houghcircles opencv检测多个圆圈

时间:2017-03-05 14:03:26

标签: opencv

我正在尝试使用java和opencv中的HoughCircles方法在一个图像中检测多个圆圈。我可以检测所有圆圈,但一次只能检测到一个圆圈(见图片)。

我还没有找到任何其他有类似问题的人,除非他们把minDist放得太高,但我不能再降低它了,因为它已经是1.我也尝试过试验param2和param1但这并没有多大帮助。

public static void main(String[] args) {
    System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
    Mat source = Imgcodecs.imread("C:\\Users\\Anton\\Desktop\\Cirkel.png");
    Mat grey = new Mat();
    Imgproc.cvtColor(source, grey, Imgproc.COLOR_BGR2GRAY);
    Mat circles = new Mat();
    double dp = 1;
    int minDist = 1;
    int param2 = 15;
    int param1 = param2*2;
    int minRadius = 0;
    int maxRadius = 5000;
    Imgproc.HoughCircles(grey, circles, Imgproc.HOUGH_GRADIENT,dp, minDist, param1, param2, minRadius, maxRadius);

    if (!circles.empty()) {
        double x;
        double y;
        int r;
        for (int i = 0; i < circles.rows(); i++) {
            double[] data = circles.get(i, 0);
            for (int j = 0; j < data.length; j++) {
                x = data[0];
                y = data[1];
                r = (int) data[2];
                Imgproc.circle(source, new Point(x,y), r, new Scalar(0,0,255),3);
            }
        }
    } else {
        System.out.println("geen circles");
    }
    BufferedImage bi = Mat2BufferedImage(source); 
    displayImage(bi);

}

1 个答案:

答案 0 :(得分:0)

你应该像这样迭代

gen()

而不是

>>> import cv2 >>> help(cv2.xfeatures2d) Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'xfeatures2d'