diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 01:19:30 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 01:19:30 +0200 |
commit | 1896548fce4f4dd45155b65c2affa6596f6a993e (patch) | |
tree | f6f3f0af1185913f4612c0eb78c5735e3c35e6b3 | |
parent | 3e1ee69ad3a89764cda72e884165b75dd1df6b09 (diff) |
tracker/easy: fix compile test on gcc
-rw-r--r-- | tracker-easy/ocv-check.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-easy/ocv-check.cxx b/tracker-easy/ocv-check.cxx index 90c2d6c9..912bd3cf 100644 --- a/tracker-easy/ocv-check.cxx +++ b/tracker-easy/ocv-check.cxx @@ -14,5 +14,5 @@ void check_kf() #include <opencv2/highgui.hpp> void check_highgui() { - cv::imshow("foo", {}); + cv::imshow("foo", cv::noArray()); } |