diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:43:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:44:38 +0200 |
commit | ae76c229f0466034d64bcc1d3bab9dd47eb2f90a (patch) | |
tree | 63140a8d7da58e8920e2a283975d7e1f0e974a4f /tracker-easy/ocv-check.cxx | |
parent | 766ab9643471635dda821c050f854777fc67afe0 (diff) |
tracker/easy: add check for other modules
Diffstat (limited to 'tracker-easy/ocv-check.cxx')
-rw-r--r-- | tracker-easy/ocv-check.cxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/tracker-easy/ocv-check.cxx b/tracker-easy/ocv-check.cxx index 62126775..90c2d6c9 100644 --- a/tracker-easy/ocv-check.cxx +++ b/tracker-easy/ocv-check.cxx @@ -1,7 +1,18 @@ #include <opencv2/calib3d.hpp> - -static void check_solvep3p() +void check_solvep3p() { cv::Mat x; cv::solveP3P(x, x, x, x, x, x, 0); } + +#include <opencv2/video/tracking.hpp> +void check_kf() +{ + [[maybe_unused]] cv::KalmanFilter kf; +} + +#include <opencv2/highgui.hpp> +void check_highgui() +{ + cv::imshow("foo", {}); +} |