diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-28 19:31:15 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-28 19:33:26 +0200 |
commit | 51449ce32dcac7692d5b29fc49f8102b3478466c (patch) | |
tree | 9a176d4a3872dc74f324f5de5d1aee3ac32f487a /tracker-pt/ftnoir_tracker_pt.h | |
parent | dce50f45d7dcb4fda3c4f30bbb89a2dab9500afd (diff) |
tracker/pt: add point filter
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.h')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h index 210c6a01..fa3d94ad 100644 --- a/tracker-pt/ftnoir_tracker_pt.h +++ b/tracker-pt/ftnoir_tracker_pt.h @@ -13,6 +13,7 @@ #include "point_tracker.h" #include "cv/numeric.hpp" #include "video/video-widget.hpp" +#include "point-filter.hpp" #include <atomic> #include <memory> @@ -74,6 +75,7 @@ private: std::atomic<unsigned> point_count { 0 }; std::atomic<bool> ever_success = false; mutable QMutex center_lock, data_lock; + point_filter filter{s}; }; } // ns pt_impl |