Is there a jump for Opencv?

I recently used Cocoapods, a library of dependency management tools in Objective C. It has podspec for commonly used libraries like ZXing, AFNetworking, etc. did anyone come across <country> OpenCV podspec

+5
source share
3 answers

This issue has been fixed. You can install OpenCV using CocoaPods. Have a look here: https://github.com/SebastienThiebaud/OpenCV-iOS/blob/master/README.md

Actually, the version number of the module is incorrect, version 0.0.1 - OpenCV 2.4.3

Sorry for the confusion.

+5
source

. "pod search opencv" , podspec . , 0.0.1...

+3

Add below to your subfile and run the command 'pod install --no-repo-update'.

platform: ios, "7.0"

pod 'OpenCV', '2.4.9'

0
source

All Articles