From dfd86e8c57f50236eb7e5a9bff8f0c03befd180f Mon Sep 17 00:00:00 2001 From: lcarlone Date: Sat, 6 Nov 2021 20:00:23 -0400 Subject: [PATCH] this will need to be applied in #861 --- gtsam_unstable/slam/SmartProjectionPoseFactorRollingShutter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam_unstable/slam/SmartProjectionPoseFactorRollingShutter.h b/gtsam_unstable/slam/SmartProjectionPoseFactorRollingShutter.h index 75bd95226..4a9481d6b 100644 --- a/gtsam_unstable/slam/SmartProjectionPoseFactorRollingShutter.h +++ b/gtsam_unstable/slam/SmartProjectionPoseFactorRollingShutter.h @@ -143,7 +143,7 @@ class SmartProjectionPoseFactorRollingShutter * interpolated pose is the same as world_P_body_key1 * @param cameraId ID of the camera taking the measurement (default 0) */ - void add(const MEASUREMENT& measured, const Key& world_P_body_key1, + void add(const Point2& measured, const Key& world_P_body_key1, const Key& world_P_body_key2, const double& alpha, const size_t& cameraId = 0) { // store measurements in base class @@ -182,7 +182,7 @@ class SmartProjectionPoseFactorRollingShutter * @param cameraIds IDs of the cameras taking each measurement (same order as * the measurements) */ - void add(const MEASUREMENTS& measurements, + void add(const Point2Vector& measurements, const std::vector>& world_P_body_key_pairs, const std::vector& alphas, const FastVector& cameraIds = FastVector()) {