Updated DisplayImage.cpp program to compile

CV_WINDOW_AUTOSIZE -> WINDOW_AUTOSIZE
pull/2317/head
Elliot Godzich 11 years ago
parent 511e79aef7
commit 2806679781
  1. 2
      doc/tutorials/introduction/linux_gcc_cmake/linux_gcc_cmake.rst

@ -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);

Loading…
Cancel
Save