Added accessor method for the calibration object to the ProjectionFactor and StereoFactor
parent
e7562ac07f
commit
2b35d04c8e
|
@ -36,6 +36,8 @@ namespace gtsam {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
typedef boost::shared_ptr<Cal3_S2> shared_ptr; ///< shared pointer to calibration object
|
||||||
|
|
||||||
/// @name Standard Constructors
|
/// @name Standard Constructors
|
||||||
/// @{
|
/// @{
|
||||||
|
|
||||||
|
|
|
@ -101,6 +101,11 @@ namespace gtsam {
|
||||||
return z_;
|
return z_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** return the calibration object */
|
||||||
|
inline const Cal3_S2::shared_ptr calibration() const {
|
||||||
|
return K_;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
/// Serialization function
|
/// Serialization function
|
||||||
|
|
|
@ -100,6 +100,12 @@ public:
|
||||||
return z_;
|
return z_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** return the calibration object */
|
||||||
|
inline const Cal3_S2Stereo::shared_ptr calibration() const {
|
||||||
|
return K_;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/** Serialization function */
|
/** Serialization function */
|
||||||
friend class boost::serialization::access;
|
friend class boost::serialization::access;
|
||||||
|
|
Loading…
Reference in New Issue