fix matlab compilation
parent
8051e743b7
commit
28b740eb8d
|
@ -137,7 +137,7 @@ class FitBasis {
|
||||||
static gtsam::GaussianFactorGraph::shared_ptr LinearGraph(
|
static gtsam::GaussianFactorGraph::shared_ptr LinearGraph(
|
||||||
const std::map<double, double>& sequence,
|
const std::map<double, double>& sequence,
|
||||||
const gtsam::noiseModel::Base* model, size_t N);
|
const gtsam::noiseModel::Base* model, size_t N);
|
||||||
This::Parameters parameters() const;
|
gtsam::This::Parameters parameters() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace gtsam
|
} // namespace gtsam
|
||||||
|
|
|
@ -1126,10 +1126,10 @@ class TriangulationResult {
|
||||||
Status status;
|
Status status;
|
||||||
TriangulationResult(const gtsam::Point3& p);
|
TriangulationResult(const gtsam::Point3& p);
|
||||||
const gtsam::Point3& get() const;
|
const gtsam::Point3& get() const;
|
||||||
static TriangulationResult Degenerate();
|
static gtsam::TriangulationResult Degenerate();
|
||||||
static TriangulationResult Outlier();
|
static gtsam::TriangulationResult Outlier();
|
||||||
static TriangulationResult FarPoint();
|
static gtsam::TriangulationResult FarPoint();
|
||||||
static TriangulationResult BehindCamera();
|
static gtsam::TriangulationResult BehindCamera();
|
||||||
bool valid() const;
|
bool valid() const;
|
||||||
bool degenerate() const;
|
bool degenerate() const;
|
||||||
bool outlier() const;
|
bool outlier() const;
|
||||||
|
|
|
@ -701,7 +701,7 @@ class ISAM2Result {
|
||||||
/** Getters and Setters for all properties */
|
/** Getters and Setters for all properties */
|
||||||
size_t getVariablesRelinearized() const;
|
size_t getVariablesRelinearized() const;
|
||||||
size_t getVariablesReeliminated() const;
|
size_t getVariablesReeliminated() const;
|
||||||
FactorIndices getNewFactorsIndices() const;
|
gtsam::FactorIndices getNewFactorsIndices() const;
|
||||||
size_t getCliques() const;
|
size_t getCliques() const;
|
||||||
double getErrorBefore() const;
|
double getErrorBefore() const;
|
||||||
double getErrorAfter() const;
|
double getErrorAfter() const;
|
||||||
|
|
|
@ -99,7 +99,6 @@ endif(GTSAM_UNSTABLE_INSTALL_MATLAB_TOOLBOX)
|
||||||
|
|
||||||
# Record the root dir for gtsam - needed during external builds, e.g., ROS
|
# Record the root dir for gtsam - needed during external builds, e.g., ROS
|
||||||
set(GTSAM_SOURCE_ROOT_DIR ${GTSAM_SOURCE_DIR})
|
set(GTSAM_SOURCE_ROOT_DIR ${GTSAM_SOURCE_DIR})
|
||||||
message(STATUS "GTSAM_SOURCE_ROOT_DIR: [${GTSAM_SOURCE_ROOT_DIR}]")
|
|
||||||
|
|
||||||
# Tests message(STATUS "Installing Matlab Toolbox")
|
# Tests message(STATUS "Installing Matlab Toolbox")
|
||||||
install_matlab_scripts("${GTSAM_SOURCE_ROOT_DIR}/matlab/" "*.m;*.fig")
|
install_matlab_scripts("${GTSAM_SOURCE_ROOT_DIR}/matlab/" "*.m;*.fig")
|
||||||
|
|
Loading…
Reference in New Issue