【发布时间】:2015-12-09 22:56:15
【问题描述】:
我目前正在使用 EmguCV 对靶场目标的图像进行形状检测:
但无论我在代码中的设置如何(如下):
double cannyThreshold = 180;
double circleAccumulatorThreshold = 170;
CircleF[] circles = CvInvoke.HoughCircles(uimage, HoughType.Gradient, 2.0, 1.0, cannyThreshold, circleAccumulatorThreshold, 5);
我是不是搞错了?我正在使用Rev3.0 EmguCV 中包含的默认形状检测示例。
【问题讨论】:
-
霍夫圆找不到同心圆。
-
那么什么会找到同心圆
-
你可以看看this 了解一下...