Can someone may point me in the right direction how to build cvBlob as a static library (or even better as a framework) for iOS-Development?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll first need to build OpenCV for iOS. There are instructions on this web site. You can then follow similar instructions on building cvBlob for iOS. Basically,
cmakewill create an Xcode project for you, you’ll just need to set the appropriate architecture.You can see the script provided on the website simply includes the iOS SDK and changes
ARCHso that it builds for the appropriate platform. iOS devices need to be built forarmv6andarmv7while the simulator needsi386.The script will build OpenCV as a static lib, then you should be able to replace OpenCV in the script with cvBlob’s Xcode project.