follow Google Style for function naming
parent
e95840b1b5
commit
f533729d3e
|
|
@ -1130,7 +1130,7 @@ bool readBAL(const string &filename, SfmData &data) {
|
|||
}
|
||||
|
||||
/* ************************************************************************* */
|
||||
SfmData readBAL(const string &filename) {
|
||||
SfmData readBal(const string &filename) {
|
||||
SfmData data;
|
||||
readBAL(filename, data);
|
||||
return data;
|
||||
|
|
|
|||
|
|
@ -283,7 +283,7 @@ GTSAM_EXPORT bool readBAL(const std::string& filename, SfmData &data);
|
|||
* @param filename The name of the BAL file.
|
||||
* @return SfM structure where the data is stored.
|
||||
*/
|
||||
GTSAM_EXPORT SfmData readBAL(const std::string& filename);
|
||||
GTSAM_EXPORT SfmData readBal(const std::string& filename);
|
||||
|
||||
/**
|
||||
* @brief This function writes a "Bundle Adjustment in the Large" (BAL) file from a
|
||||
|
|
|
|||
Loading…
Reference in New Issue