Updated DisplayImage.cpp program to compile
authorElliot Godzich <elliot.godzich@gmail.com>
Wed, 12 Feb 2014 05:46:14 +0000 (21:46 -0800)
committerElliot Godzich <elliot.godzich@gmail.com>
Wed, 12 Feb 2014 05:46:14 +0000 (21:46 -0800)
CV_WINDOW_AUTOSIZE -> WINDOW_AUTOSIZE

doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst

index b1c96c4..f32efd2 100644 (file)
@@ -41,7 +41,7 @@ Let's use a simple program such as DisplayImage.cpp shown below.
          return -1;
        }
 
-     namedWindow( "Display Image", CV_WINDOW_AUTOSIZE );
+     namedWindow( "Display Image", WINDOW_AUTOSIZE );
      imshow( "Display Image", image );
 
      waitKey(0);