OpenCV 和 Xcode
我正在研究图像和视频中的模式识别,并认为 C++ 是最佳选择(对于高性能/实时应用程序)。当我构建 C++ 应用程序(命令行工具)时,我想在 Xcode 中使用 OpenCV 库
我正在运行 Xcode 3.2,并且刚刚按照 http://opencv.willowgarage.com/wiki/Mac_OS_X_OpenCV_Port 到“这可能会破坏 TIFF 导出中的某些内容,但构建至少完成”部分“使用新的 CMake 构建系统”。我没有任何错误。
如果我现在想使用 Xcode 中的库,我该如何继续,或者我需要做其他事情吗?非常感谢任何帮助。
最大限度。
I am looking at pattern recognition in images and video and have thought that C++ is the way to go (for high performance/real-time applications). I want to use the OpenCV libraries in Xcode when I build a C++ application (command-line tool)
I am running Xcode 3.2 and have just followed the steps at http://opencv.willowgarage.com/wiki/Mac_OS_X_OpenCV_Port up to "This probably breaks something in TIFF export, but the build at least completes" in the section "Building using the new CMake build system". I have had no errors.
How do I proceed if I want to use the libraries in Xcode now or do I need to do something else? Any help is greatly appreciated.
Max.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,它是找到生成的库并将其放入您的 xcode 项目中的问题。您可以将库复制到您的项目中,也可以仅引用它。
"Xcode 项目管理指南" 文档,解释如何将库和框架链接到您的应用程序中。
"Xcode 的“链接”部分构建系统指南” 可能是一本不错的读物。
Basically its a matter of finding the produced library and dropping it into your xcode project. You can either copy the library into your project or just have a reference to it.
There is a section in the "Xcode Project Management Guide" document that explains how to link libraries and frameworks into your application.
The "Linking" section of "Xcode Build System Guide" might be a good read.