Merge pull request #2363 from alekcac:introduction_tut_fix

pull/2364/merge
Roman Donchenko 11 years ago committed by OpenCV Buildbot
commit 13182da945
  1. 51
      doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst

@ -25,29 +25,34 @@ Let's use a simple program such as DisplayImage.cpp shown below.
.. code-block:: cpp .. code-block:: cpp
#include <stdio.h> #include <stdio.h>
#include <opencv2/opencv.hpp> #include <opencv2/opencv.hpp>
using namespace cv; using namespace cv;
int main( int argc, char** argv ) int main(int argc, char** argv )
{ {
Mat image; if ( argc != 2 )
image = imread( argv[1], 1 ); {
printf("usage: DisplayImage.out <Image_Path>\n");
if( argc != 2 || !image.data ) return -1;
{ }
printf( "No image data \n" );
return -1; Mat image;
} image = imread( argv[1], 1 );
namedWindow( "Display Image", CV_WINDOW_AUTOSIZE ); if ( !image.data )
imshow( "Display Image", image ); {
printf("No image data \n");
waitKey(0); return -1;
}
return 0; namedWindow("Display Image", CV_WINDOW_AUTOSIZE );
} imshow("Display Image", image);
waitKey(0);
return 0;
}
Create a CMake file Create a CMake file
--------------------- ---------------------

Loading…
Cancel
Save