标签:printf mic class src imp code could not int read
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
Mat img = imread("C:\\Users\\Pictures\\test.jpg");
if (img.empty())
{
printf("Could not find the image!\n");
return -1;
}
imshow("ImputImage", img);
waitKey(0);
return 0;
}
标签:printf mic class src imp code could not int read
原文地址:https://www.cnblogs.com/wbyixx/p/12238317.html