I'm trying to add the newest version of openCV to my iOS project, but when I compile, I get about 30 link errors:
Example:
Undefined symbols for architecture i386:
"cv::merge(std::vector<cv::Mat, std::allocator<cv::Mat> > const&, cv::_OutputArray const&)", referenced from:
I added the OpenCV framework, along with all the other required frameworks, in a dummy app with a simple video capture (following the tutorial in the link), and it worked perfectly.
I'm not sure why it could have worked so smoothly in one place, but not in the other. My only thought is that I ame compiling for different architectures between the two apps, but I think for both I'm aiming at armv7 and armv7s.
Any idea on what could be causing link errors?