Add missing getter

release/4.3a0
Jose Luis Blanco Claraco 2021-08-11 01:27:14 +02:00
parent f405e89b2f
commit 570a44b7b2
No known key found for this signature in database
GPG Key ID: D443304FBD70A641
1 changed files with 6 additions and 1 deletions

View File

@ -164,10 +164,15 @@ namespace gtsam {
} }
/** return the calibration object */ /** return the calibration object */
inline const boost::shared_ptr<CALIBRATION> calibration() const { const boost::shared_ptr<CALIBRATION> calibration() const {
return K_; 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 */ /** return verbosity */
inline bool verboseCheirality() const { return verboseCheirality_; } inline bool verboseCheirality() const { return verboseCheirality_; }