mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
build fix
This commit is contained in:
parent
dda3b534ad
commit
094d7c4926
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user