build fix
authorAdrien BAK <adrien.bak@gmail.com>
Thu, 28 Nov 2013 02:42:44 +0000 (11:42 +0900)
committerAdrien BAK <adrien.bak@gmail.com>
Thu, 28 Nov 2013 02:42:44 +0000 (11:42 +0900)
samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp

index 5cfcbd3..86b69af 100644 (file)
@@ -28,7 +28,7 @@ namespace
         // will hold the results of the detection
         std::vector<Vec3f> circles;
         // runs the actual detection
-        HoughCircles( src_gray, circles, HOUGH_GRADIENT, 1, src_gray.rows/8, cannyThreshold, accumulatorThreshold, 0, 0 );
+        HoughCircles( src_gray, circles, CV_HOUGH_GRADIENT, 1, src_gray.rows/8, cannyThreshold, accumulatorThreshold, 0, 0 );
 
         // clone the colour, input image for displaying purposes
         Mat display = src_display.clone();