How To Use Static Opencv Library
I'm trying to integrate OpenCV into my android project (using ndk). When I made :OPENCV_LIB_TYPE:=static I can't built the project I had this error: E:\android-ndk-r8\ndk-build.cmd
Solution 1:
I try to build two OpenCV-based native libs using single Android.mk
. This known issue had been fixed at OpenCV 2.4.4
release. I need to update OpenCV4Android SDK or add OPENCV_INSTALL_MODULES:=off
line before the second inclusion of opencv.mk
, if I want to use this version.
Post a Comment for "How To Use Static Opencv Library"