我在使用从 mac 端口安装的 openCV 2.3.1 时遇到问题。对于 xcode 项目的安装和配置,我使用了 Salem 博客中的这篇文章。帖子中显示的示例代码效果很好。但是,如果我将 mail.cpp 文件更改为仅显示图像,则会失败。这是我的示例代码:
#include <iostream>
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
int main (int argc, const char * argv[])
{
cv::Mat img = cv::imread("Lena.jpg");
cv::namedWindow("Image");
cv::imshow("Image", img);
}
我得到的错误如下:
OpenCV Error: Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat, file /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_graphics_opencv/opencv/work/OpenCV-2.3.1/modules/core/src/array.cpp, line 2482
terminate called throwing an exception(lldb)
现在我有点困惑,因为我对 c++ 也不太熟悉。
有什么建议吗?