diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-31 18:10:02 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-31 18:14:51 +0100 |
commit | 1e4dfb7040e2da191e5a96f11454a6e9cc8e1285 (patch) | |
tree | 0c4f7f26b340408c1b7cc3210545cbfd89dc38dc | |
parent | 36273c6dfdd9a0a22e396b354213eb492886afaf (diff) |
pt: fix hat coords for trackhat
-rw-r--r-- | tracker-pt/point_tracker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index f4268486..8c754718 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -89,9 +89,9 @@ public: default: case Cap: { - const double x = 60, y = 100, z = 120; - M01 = cv::Vec3f(-x, -y, -z); - M02 = cv::Vec3f(x, -y, -z); + const double x = 60, y = 90, z = 95; + M01 = cv::Vec3f(-x, -y, z); + M02 = cv::Vec3f(x, -y, z); break; } case ClipLeft: |