Building Opencv For Android From Trunk
Following the tutorial found on http://code.opencv.org/projects/opencv/wiki/Building_OpenCV4Android_from_trunk I encountered problems with cmake. when I run the command cmake -DCMA
Solution 1:
After some more googling, I found http://code.opencv.org/issues/3463
Which simply says to change
cmake -DCMAKE_TOOLCHAIN_FILE=..\android\android.toolchain.cmake ..\..
to
cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=..\android\android.toolchain.cmake ..\..
And it succesfully finishes after you've done that.
Post a Comment for "Building Opencv For Android From Trunk"