在 C::B 上使用 Borland 配置 OpenCV 2.2
大家好,
我有一些项目需要我进行图像处理,我曾经使用 MATLAB,但它太慢了,寻找替代方案使我转向 OpenCV。我习惯使用 Borland Compiler 5.5 来使用 C::B,幸运的是,默认情况下不支持 borland,我已经用 google 搜索过了,但运气还不错。
拜托,如果有人能帮我配置这一切,那将会有很大的帮助..
提前感谢..
Hii all,,
I have some project that requires me to do Image processing, I used to work with MATLAB but it is just too slooowww, Searching for an alternative lands me up to OpenCV. I am used to C::B with Borland Compiler 5.5, and to my luck, borland is not supported by default, I have googled it but ain't no luck.
Please, it would be of great help, if anyone can help me out to configure it all..
thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是使用编译器包装器将 g++ 编译器选项转换为 Borland C。然后使用配置脚本来发现编译环境所需的设置。
您可以采用 msvc 的编译器包装器并针对 Borland 进行修改。您可以在此处找到它。
接下来,您应该安装 Cygwin 以便在您的系统上可以使用典型的 Unix 工具(例如 sh)。
运行安装中提到的 OpenCV 配置脚本。你可能必须在进行过程中解决一些问题。使用 config.log 查看失败消息(如果有)。
The best way is to use a compiler wrapper to convert from g++ compiler options to Borland C. Then use the configure script to discover the settings that are needed for your compilation environment.
You can take the compiler wrapper for msvc and modify it for Borland. It can be found here.
Next you should install Cygwin so that the typical Unix tools such as sh are available on your system.
Run the OpenCV configure script as mentioned in INSTALL. You may have to fix things as you go along. Using the config.log to see failure messages, if any.