Closed bckim1318 closed 4 years ago
It looks like it is unable to find the aruco module.
See this opencv install guide: https://docs.openvins.com/gs-installing.html#gs-install-opencv
I installed opencv follwing installation guide.
git clone --branch 3.4.6 https://github.com/opencv/opencv/ git clone --branch 3.4.6 https://github.com/opencv/opencv_contrib/ mkdir opencv/build/ cd opencv/build/ cmake -DOPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules .. make -j8 sudo make install
And I can import aruco module in python, so I think contrib module are installed well.
From your error it looks like it can't find the aruco module. I would check what version of opencv the ov_core library finds, you might have to specify the specific version if you have multiple installs on your system.
I modify the CMakeLists to find_package(OpenCV 3.4 REQUIRED) and it works.
Did a little test on this issue, OpenCV 3.2 is not compatible with ov. 3.3.1 is ok.
I'm trying to build open vins, but it fails. How can I fix it?