diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-03-09 08:40:36 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-03-09 08:40:36 +0100 |
commit | f9fbbd9b5e01ebb3e296da138cb4f2906d9bdcff (patch) | |
tree | 52f88b4f59647b2d925e2cedecbd7da9ae7a8ddf | |
parent | 77b5d308f7ca07b7808e7c8d503c9d8d42b0d8dd (diff) |
tracker/pt: fix mini clip sizetrackhat-1.2p6
Issue: #755
Reported by: @sanpats
Data by: TrackHat
-rw-r--r-- | tracker-pt/point_tracker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index 8ed27aec..3bd10f6b 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -103,7 +103,7 @@ public: case New_ClipLeft: case New_ClipRight: { - const double by = 75, bz = 35, ty = 40, tz = 18; + const double by = 60, bz = 38.2, ty = 42.2, tz = 12.6; M01 = cv::Vec3d(0, ty, -tz); M02 = cv::Vec3d(0, -by, -bz); break; |