opencv 2.1崩溃
我使用 Visual Studio 2010 进行 OpenCV。示例代码 .c 工作完美,但 .cpp 崩溃。你知道问题是什么吗?
这是问题的屏幕截图。 屏幕截图
I use visual studio 2010 for opencv. sample codes .c works perfectly but .cpp crash. Do you know what is the problem.
Here is the screen shot of problem. screenshot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能将使用 mingw 构建的 openCV 下载与使用 Visual Studio 构建的代码混合在一起。
C++ 编译器创建不同的库格式来加载代码,C 编译器更加相似
为您的编译器下载 openCV 版本或自行构建
Most likely you are mixing an openCV download built with mingw with your code built with visual studio.
C++ compilers create different library formats for loading code, C compilers are much more similar
Download an openCV build for your compiler or build it yourself