次のコードを見てください
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <iostream>
using namespace std;
using namespace cv;
int main()
{
Mat image;
try
{
image = imread("C:/Users/Public/Pictures/Sample Pictures/Chrysanthemum.jpg");
if(!image.data)
{
throw 1;
}
cout << "Height: " << image.size().height << " Width: " << image.size().width << endl;
}
catch(int error)
{
cout << "This message does not exists" << endl;
exit(0);
}
namedWindow("Image 1");
imshow("Image 1",image);
system("pause");
return 0;
}
このコードを実行すると、画像が表示されません。代わりに、空白のイメージが表示されます。何故ですか?助けてください。