我收到此错误,我尝试将基于 OpenCV 的库添加到 MonoTouch 项目中:
Undefined symbols for architecture i386:
"cv::isContourConvex(cv::_InputArray const&)", referenced from:
aruco::MarkerDetector::detectRectangles(cv::Mat const&, std::vector<aruco::MarkerDetector::MarkerCandidate, std::allocator<aruco::MarkerDetector::MarkerCandidate> >&)in libAruco.a(markerdetector.o)
"cv::warpPerspective(cv::_InputArray const&, cv::_OutputArray const&, cv::_InputArray const&, cv::Size_<int>, int, int, cv::Scalar_<double> const&)", referenced from:
aruco::MarkerDetector::warp_cylinder(cv::Mat&, cv::Mat&, cv::Size_<int>, aruco::MarkerDetector::MarkerCandidate&)in libAruco.a(markerdetector.o)
aruco::MarkerDetector::warp(cv::Mat&, cv::Mat&, cv::Size_<int>, std::vector<cv::Point_<float>, std::allocator<cv::Point_<float> > >)in libAruco.a(markerdetector.o)
"cv::FileNodeIterator::readRaw(std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned char*, unsigned long)", referenced from:
cv::VecReaderProxy<float, 1>::operator()(std::vector<float, std::allocator<float> >&, unsigned long) constin libAruco.a(board.o)
"cv::FileNodeIterator::FileNodeIterator(CvFileStorage const*, CvFileNode const*, unsigned long)", referenced from:
cv::FileNode::begin() constin libAruco.a(board.o)
cv::FileNode::end() constin libAruco.a(board.o)
这只是存在此问题的完整 opencv 方法列表中的一个示例,因为它很容易超过 100 个。
我正在尝试在模拟器中运行它(我只有 monotouch 的试用版)。我正在为 xcode 中的 ipad 模拟器进行编译,并按照 Opencv 教程使用他们网站上的预构建框架设置我的项目。我可能想知道是否需要输入一些链接器标志,因为我的静态库没有我期望的那么大,因为它需要与几个 opencv 模块链接(这只是一种直觉,而不是必然表示任何东西)。
我想还有一点很重要,因为我对 iOS 和 MonoTouch 开发的经验很少,所以我可能会错过一些非常简单的东西。