summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-12-21 19:23:16 +0100
committerStanislaw Halik <sthalik@misaki.pl>2014-12-21 19:23:16 +0100
commit788bbada8362ff57d6f39b6cdda07ece441eff7a (patch)
tree9a1089e4f2b729a1ba5572816c654b0832d8f92a /ftnoir_tracker_pt
parente9df4621a82b6d94ebaf8e449e6fdb7602f2abf6 (diff)
Revert "pt: calibrated pitch needs axis swap"
This reverts commit 7c8786ec390bb43e9ef4aaf4242576bf723fabff. It was right and that made the sign wrong.
Diffstat (limited to 'ftnoir_tracker_pt')
-rw-r--r--ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.cpp b/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.cpp
index 910d273a..635e21c5 100644
--- a/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.cpp
+++ b/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.cpp
@@ -94,7 +94,7 @@ void TrackerDialog::startstop_trans_calib(bool start)
{
auto tmp = trans_calib.get_estimate();
s.t_MH_x = tmp[0];
- s.t_MH_y = -tmp[1];
+ s.t_MH_y = tmp[1];
s.t_MH_z = tmp[2];
}
}