如何在opencv或emgu cv中检测三角形边缘?

时间:2012-07-11 01:51:13

标签: opencv emgucv

enter image description here

我正在使用Emgu CV,我想在图片中检测到两个锐利,首先我将图像转换为灰色,然后调用cvCanny,然后调用FindContours,但只找到一个轮廓,找不到三角形。

代码:

 public static void Do(Bitmap bitmap, IImageProcessingLog log)
    {
        Image<Bgr, Byte> img = new Image<Bgr, byte>(bitmap);
        Image<Gray, Byte> gray = img.Convert<Gray, Byte>();
        using (Image<Gray, Byte> canny = new Image<Gray, byte>(gray.Size))
        using (MemStorage stor = new MemStorage())
        {
            CvInvoke.cvCanny(gray, canny, 10, 5, 3);
            log.AddImage("canny",canny.ToBitmap());

            Contour<Point> contours = canny.FindContours(
             Emgu.CV.CvEnum.CHAIN_APPROX_METHOD.CV_CHAIN_APPROX_SIMPLE,
             Emgu.CV.CvEnum.RETR_TYPE.CV_RETR_TREE,
             stor);

            for (int i=0; contours != null; contours = contours.HNext)
            {
                i++;
                MCvBox2D box = contours.GetMinAreaRect();

                Image<Bgr, Byte> tmpImg = img.Copy();
                tmpImg.Draw(box, new Bgr(Color.Red), 2);
                log.AddMessage("contours" + (i) +",angle:"+box.angle.ToString() + ",width:"+box.size.Width + ",height:"+box.size.Height);
                log.AddImage("contours" + i, tmpImg.ToBitmap());
            }
        }
    }

1 个答案:

答案 0 :(得分:6)

(我不知道emguCV,但我会给你一个想法)

您可以按照以下方式执行此操作:

  1. 使用split()功能将图像分割为R,G,B平面。
  2. 对于每个平面,应用Canny边缘检测。
  3. 然后使用approxPolyDP函数找到其中的轮廓并近似每个轮廓。
  4. 如果近似轮廓中的坐标数为3,则很可能是三角形,值对应于3个三角形顶点。
  5. 下面是python代码:

    import numpy as np
    import cv2
    
    img = cv2.imread('softri.png')
    
    for gray in cv2.split(img):
        canny = cv2.Canny(gray,50,200)
    
        contours,hier = cv2.findContours(canny,1,2)
        for cnt in contours:
            approx = cv2.approxPolyDP(cnt,0.02*cv2.arcLength(cnt,True),True)
            if len(approx)==3:
                cv2.drawContours(img,[cnt],0,(0,255,0),2)
                tri = approx
    
    for vertex in tri:
        cv2.circle(img,(vertex[0][0],vertex[0][1]),5,255,-1)
    
    cv2.imshow('img',img)
    cv2.waitKey(0)
    cv2.destroyAllWindows()
    

    下面是蓝色平面的精确图表:

    enter image description here

    下面是最终输出,三角形及其格子分别用绿色和蓝色标记:

    enter image description here