summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/ocv-check.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-easy/ocv-check.cxx')
-rw-r--r--tracker-easy/ocv-check.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/tracker-easy/ocv-check.cxx b/tracker-easy/ocv-check.cxx
new file mode 100644
index 00000000..90c2d6c9
--- /dev/null
+++ b/tracker-easy/ocv-check.cxx
@@ -0,0 +1,18 @@
+#include <opencv2/calib3d.hpp>
+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", {});
+}