// Lab1.cpp : Defines the entry point for the console application. // // Lab1.cpp : Defines the entry point for the console application. // #include #include 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(argv[1]/*,IMREAD_COLOR*/); // Read the file //image=imread("D:/Poze/20120721_Villandry/CIMG6842.JPG"); if(!image.data ) // Check for invalid input { cout << "Could not open or find the image" << std::endl ; return -2; } namedWindow( "Display window", 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; }