Installing OpenCV on macbook for xcode6
- Create a folder for keeping your framework
- Open terminal and cd to the directory created in step1
- Run command on terminal "git clone https://github.com/Itseez/opencv.git"
- Wait for a while to complete opencv
- cd to root i.e. cd / and run another command "sudo ln -s /Applications/Xcode.app/Contents/Developer Developer"
- if your mac has got cmake then
run "python opencv/platforms/ios/build_framework.py iOS"
else
run "xcodebuild -license"
download cmake(cmake-3.1.0-rc1) source from http://www.cmake.org/download/
cd to the downloaded source and run "./configure && make && make install"
run "python opencv/platforms/ios/build_framework.py iOS" - Opencv2.framework is ready to use in you Xcode code
add a comment