From 094d7c4926e53fd2da0c1eb55b17208a3f21e067 Mon Sep 17 00:00:00 2001 From: Adrien BAK Date: Thu, 28 Nov 2013 11:42:44 +0900 Subject: [PATCH] build fix --- samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp b/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp index 5cfcbd3..86b69af 100644 --- a/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp +++ b/samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp @@ -28,7 +28,7 @@ namespace // will hold the results of the detection std::vector 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(); -- 2.7.4