OpenCV computer vision with iOS: stitching panoramas & image denosing
v2 demonstrates how to mix Swift, Objective-C and C++ in one project whilst keeping the code clearly separate.The project AppDelegate and View Controller are written in Swift. Swift cannot talk directly to C++ (which we need for OpenCV), so we provide an Objective-C++ wrapper class to mediate between Swift and C++. We also provide an Objective-C++ category on UIImage to mediate between UIImage and CV::Mat image formats. The CVWrapper header file is pure Objective-C. For v1(which doesn't use Swift) this separation was a matter of clean style. For v2, it is a requirement: if any C++ headers are included in the wrapper, the app will not compile (Swift won't like it).
v3.0.0(default): download the framework and drag it to your project.
Include it in the Link Binary With Libraries section of Build Phases for the target.
Change the #include
line for 3.0 compatibility as indicated in stitching.cpp
v2.4.9: Assuming you have first installed CocoaPods, run 'pod install' in this directory to install OpenCV for the project. From then on, always open the project in XCode from the SwiftStitch.xcworkspace
file that the pod install creates.
Use
OpenCVStitch is a very simple iOS/openCV example showing basic use of the Stitcher class. The c++ code is adapted from a sample included with the openCV distribution.
The app has almost no user interface. On launch, the stitching code operates on four sample images, displaying the result in a UIScrollView.
Algorithm Resource http://personal.ie.cuhk.edu.hk/~lz013/projects/BurstDenoising.html
OpenCVStitch Versions
Version 2.1
Swift / Objective-C / C++
Tested with XCode 7.0 / Swift 2.0 for iOS 7.0+
Version 2.0
Swift / Objective-C / C++
Tested with XCode 6.4 / Swift 1.2 for iOS 7.0+
Version 1.0
Objective-C / C++
Tested with XCode 4.5.2 -> 6.3 for iOS 5.1 upwards
OpenCV Versions
OpenCV 3.x
There is no podspec available for openCV 3, but the framework does just work if you download from http://opencv.org and drag into the project. No need for cocoaPods with this version (this drag-n-drop compatibility is quite an achievement given past difficulties with openCV installations).
The stitching seems to be much more efficient (85% faster on my iphone 5s). However the quality is noticeably inferior with the test images supplied, so v2.4x remains the default for now.
OpenCV 2.4.x
The openCV distribution is not as clean as we would like.
2.4.10 - the pod spec and the distribution build for iOS is broken
2.4.9 - the pod spec is broken. This is likely a result of relying on Sourceforge for hosting.
Therefore we are using a self-hosted podspec (thanks Matteo!) until official channels are fixed. Specs are available for 2.4.9 and 2.4.10, but as the latter won't run we use 2.4.9.
this version of OpenCVStitch opted to use cocoapods to overcome the notorious installation issues with previous versions of the openCV 2.4.x framework.. it seems our optimism was slightly premature!
XCode 7
Project is now updated for Swift 2 and XCode 7. Point of no return! For backwards compatibility checkout the 2.0 branch or refer to the Objective-C version v1.0.
Comparisons
OpenCV 2.4.9 | OpenCV 3.0.0 |