Fl0p / OpenCV-iOS

OpenCV (open source computer vision library) just builded iOS framework and Pod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing symbols for i386 architecture

shexbeer opened this issue · comments

Hi,

really nice work, its a joy to use it with CococaPods.
But I got a problem while porting a opencv-project.
I miss some symbols for i386 Architecture (using iOS Simulator):

cv::drawKeypoints(cv::Mat const&, std::vector<cv::KeyPoint, std::allocator<cv::KeyPoint> > const&, cv::Mat&, cv::Scalar_<double> const&, int)
cv::CascadeClassifier::load(std::string const&)
cv::DescriptorMatcher::radiusMatch(cv::Mat const&, std::vector<std::vector<cv::DMatch, std::allocator<cv::DMatch> >, std::allocator<std::vector<cv::DMatch, std::allocator<cv::DMatch> > > >&, float, std::vector<cv::Mat, std::allocator<cv::Mat> > const&, bool)
cv::merge(std::vector<cv::Mat, std::allocator<cv::Mat> > const&, cv::_OutputArray const&)
cv::split(cv::Mat const&, std::vector<cv::Mat, std::allocator<cv::Mat> >&)
cv::imread(std::string const&, int)
cv::imshow(std::string const&, cv::_InputArray const&)
cv::putText(cv::Mat&, std::string const&, cv::Point_<int>, int, double, cv::Scalar_<double>, int, int, bool)
cv::FeatureDetector::detect(cv::Mat const&, std::vector<cv::KeyPoint, std::allocator<cv::KeyPoint> >&, cv::Mat const&) const
cv::Feature2D::compute(cv::Mat const&, std::vector<cv::KeyPoint, std::allocator<cv::KeyPoint> >&, cv::Mat&) const

What could be the problem here?
Any suggestions? Thanks in advance

Ok, i fixed my problems with compiling OpenCV by myself with standard library libstdc++ instead of libc++
Issue closed =)