初次了解opencv,在用VS2013中使用一个opencv例程
发布网友
发布时间:2022-05-03 00:16
我来回答
共1个回答
热心网友
时间:2022-06-28 16:25
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace std;
int main()
{
cv::Mat image = cv::imread("F:\\OpenCV Projec\\learning project\\test4\\mon.jpg");
//矩阵不为空,则显示
if(!(image.empty()))
{
cv::namedWindow("my");
cv::imshow("my", image);
cv::waitKey(0);
}
else
{
cout<<"矩阵为空!"<<endl;
}
return 1;
}
image读进来以后加一行是否矩阵为空,判断一次。
如果发现矩阵确实为空,那就从读取照片那块下手。
看看路径是否正确,图像是否有问题。
还解决不了的话~我感觉不太可能。