Reputation: 22995
Please have a look at the following code
#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;
}
When I run this code, I do not get the image displayed. Instead, a blank image is displayed. Why is that? Please help.
Upvotes: 0
Views: 261
Reputation: 3047
You need to let the window refresh. system("pause") does not do it. The opencv equivalent is waitKey(0);
Upvotes: 2