summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/trans_calib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ftnoir_tracker_pt/trans_calib.cpp')
-rw-r--r--ftnoir_tracker_pt/trans_calib.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_tracker_pt/trans_calib.cpp b/ftnoir_tracker_pt/trans_calib.cpp
index 729a0b7f..efafefb7 100644
--- a/ftnoir_tracker_pt/trans_calib.cpp
+++ b/ftnoir_tracker_pt/trans_calib.cpp
@@ -40,5 +40,5 @@ void TranslationCalibrator::update(const Matx33f& R_CM_k, const Vec3f& t_CM_k)
Vec3f TranslationCalibrator::get_estimate()
{
Vec6f x = P.inv() * y;
- return Vec3f(-x[0], -x[1], -x[2]);
-} \ No newline at end of file
+ return Vec3f(x[0], x[1], x[2]);
+}