Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions gtsam/slam/slam.i
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@ virtual class GenericStereoFactor : gtsam::NoiseModelFactor {
GenericStereoFactor(const gtsam::StereoPoint2& measured,
const gtsam::noiseModel::Base* noiseModel, size_t poseKey,
size_t landmarkKey, const gtsam::Cal3_S2Stereo* K);
GenericStereoFactor(const gtsam::StereoPoint2& measured,
const gtsam::noiseModel::Base* noiseModel,
size_t poseKey, size_t landmarkKey,
const gtsam::Cal3_S2Stereo* K,
const POSE& body_P_sensor);
GenericStereoFactor(const gtsam::StereoPoint2& measured,
const gtsam::noiseModel::Base* noiseModel,
size_t poseKey, size_t landmarkKey,
const gtsam::Cal3_S2Stereo* K,
bool throwCheirality, bool verboseCheirality,
const POSE& body_P_sensor);

gtsam::StereoPoint2 measured() const;
gtsam::Cal3_S2Stereo* calibration() const;

Expand Down
Loading