summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/ocv-check.cxx
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-04-24 20:03:06 +0200
committerStanislaw Halik <sthalik@misaki.pl>2019-04-24 20:03:06 +0200
commitf35409972b97f3e236817b29359d18c1461247f6 (patch)
tree41cc5895bf455ebc4c7fe403c87c2d8a29c87a7b /tracker-easy/ocv-check.cxx
parent5bda6b0a8ed20f8296a2de3fd6637b59cd614036 (diff)
tracker/easy: add compile test for newer opencv
Diffstat (limited to 'tracker-easy/ocv-check.cxx')
-rw-r--r--tracker-easy/ocv-check.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/tracker-easy/ocv-check.cxx b/tracker-easy/ocv-check.cxx
new file mode 100644
index 00000000..62126775
--- /dev/null
+++ b/tracker-easy/ocv-check.cxx
@@ -0,0 +1,7 @@
+#include <opencv2/calib3d.hpp>
+
+static void check_solvep3p()
+{
+ cv::Mat x;
+ cv::solveP3P(x, x, x, x, x, x, 0);
+}