diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-02-06 11:58:04 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-02-06 11:58:04 +0100 |
commit | f6a622dd7c0927eacfd3aa1e69581027ad2b5843 (patch) | |
tree | e07c17f624749e369481f4c11287f02790e899ee | |
parent | 95a89f6fbbb83dd3f35c158d554081a9f2a34f1a (diff) |
tracker/pt: support new clip
-rw-r--r-- | tracker-pt/point_tracker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index 52f4974b..bcdd0dc7 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -96,8 +96,8 @@ public: case ClipRight: { const double by = 75, bz = 35, ty = 40, tz = 18; - M01 = cv::Vec3d(0, by, -bz); - M02 = cv::Vec3d(0, -ty, -tz); + M01 = cv::Vec3d(0, ty, -tz); + M02 = cv::Vec3d(0, -by, -bz); break; } } |