1

我收到此错误,我尝试将基于 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 开发的经验很少,所以我可能会错过一些非常简单的东西。

4

1 回答 1

2

您的静态库可能不是 FAT(多架构)库,或者可能不包含i386代码。

找出答案的简单方法是从终端窗口尝试:

lipo -info libAruco.a

那应该返回如下内容:

Architectures in the fat file: libAruco.a are: i386 ...

哪里...可能armv7(或更多)支持 iOS 设备。

OTOH 如果i386丢失,则意味着您的库未编译为在模拟器上工作。在这种情况下,您需要返回 Xcode 来构建此架构并使用lipo来创建 FAT 库(包括armi386架构)。

于 2013-02-14T13:33:45.583 回答