diff options
Diffstat (limited to 'tracker-pt/point_extractor.h')
-rw-r--r-- | tracker-pt/point_extractor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index 3e4661f9..b3fac38a 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -28,7 +28,9 @@ public: settings_pt s; private: - enum { hist_c = 2 }; + static constexpr double pi = 3.14159265359; + static constexpr int hist_c = 1; + std::vector<cv::Vec2f> points; QMutex mtx; cv::Mat frame_gray; |