Merge pull request #842 from borglab/fix/missing-visual-factor-getter
Add missing getter in ProjectionFactorrelease/4.3a0
commit
f7ef6f7037
|
|
@ -164,10 +164,15 @@ namespace gtsam {
|
|||
}
|
||||
|
||||
/** return the calibration object */
|
||||
inline const boost::shared_ptr<CALIBRATION> calibration() const {
|
||||
const boost::shared_ptr<CALIBRATION> calibration() const {
|
||||
return K_;
|
||||
}
|
||||
|
||||
/** return the (optional) sensor pose with respect to the vehicle frame */
|
||||
const boost::optional<POSE>& body_P_sensor() const {
|
||||
return body_P_sensor_;
|
||||
}
|
||||
|
||||
/** return verbosity */
|
||||
inline bool verboseCheirality() const { return verboseCheirality_; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue