diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:03:06 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:03:06 +0200 |
commit | f35409972b97f3e236817b29359d18c1461247f6 (patch) | |
tree | 41cc5895bf455ebc4c7fe403c87c2d8a29c87a7b /tracker-easy/ocv-check.cxx | |
parent | 5bda6b0a8ed20f8296a2de3fd6637b59cd614036 (diff) |
tracker/easy: add compile test for newer opencv
Diffstat (limited to 'tracker-easy/ocv-check.cxx')
-rw-r--r-- | tracker-easy/ocv-check.cxx | 7 |
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); +} |