OpenCVForiPhone
OpenCVForiPhone copied to clipboard
OpenCV build for iPhone with example project
ignoring file /Users/Heptagon/Downloads/OpenCVForiPhone-master/OpenCV.framework/OpenCV, missing required architecture x86_64 in file /Users/Heptagon/Downloads/OpenCVForiPhone-master/OpenCV.framework/OpenCV (2 slices) Undefined symbols for architecture x86_64: "cv::_InputArray::_InputArray(cv::Mat const&)", referenced from: -[OpenCVClientViewController processFrame] in OpenCVClientViewController.o "cv::_OutputArray::_OutputArray(cv::Mat&)", referenced from: -[OpenCVClientViewController processFrame]...
ld: warning: ignoring file /Users/imranmunir/Downloads/OpenCVForiPhone-master/OpenCV.framework/OpenCV, missing required architecture x86_64 in file /Users/imranmunir/Downloads/OpenCVForiPhone-master/OpenCV.framework/OpenCV (2 slices) Undefined symbols for architecture x86_64: "cv::_InputArray::_InputArray(cv::Mat const&)", referenced from: -[OpenCVClientViewController processFrame] in OpenCVClientViewController.o "cv::_OutputArray::_OutputArray(cv::Mat&)", referenced from:...
Unsupported compiler 'com.apple.compilers.llvmgcc42' selected for architecture 'i386' Unable to determine concrete GCC compiler for file /Users/imranmunir/Downloads/OpenCVForiPhone-master/OpenCVClient/main.m of type sourcecode.c.objc. Unable to determine concrete GCC compiler for file /Users/imranmunir/Downloads/OpenCVForiPhone-master/OpenCVClient/OpenCVClientAppDelegate.mm of type...
*OpenCV uses BGR rather than RGB. This doesn't matter unless you try to use the color image with the included UIImage imageWithCVMat method. Maybe that colorspace conversion should be done...
-CVMat and -CVGrayscaleMat need to be amended to take into account the UIImage::scale member. For example, with '@2x' images the scale is set to 2.0, but these CV*Mat methods will...