Error While Debugging a Code
Hey there, i am having a problem with debugging a program for loading and displaying an image
I am using visual studio 2010, and i've followed all the steps to include OpenCV libraries into it, i also tried some projects it all works, But when i try this code to be debugged there's an error shows up:
The code :
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main( int argc, char** argv )
{
if( argc != 2)
{
cout <<" Usage: display_image ImageToLoadAndDisplay" << endl;
return -1;
}
Mat image;
image = imread("OpenCV.jpg", CV_LOAD_IMAGE_COLOR); // Read the file
if(! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
namedWindow( "Display window", CV_WINDOW_AUTOSIZE );// Create a window for display.
imshow( "Display window", image ); // Show our image inside it.
waitKey(0);// Wait for a keystroke in the window
return 0;
}
The error :