diff options
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); +} |