3

ここに画像の説明を入力してください

Emgu CVを使用しています。画像内の2つのシャープを検出したいのですが、最初に画像を灰色に変換し、cvCannyを呼び出し、次にFindContoursを呼び出しますが、輪郭が1つだけ見つかり、三角形が見つかりません。

コード:

 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());
            }
        }
    }
4

1 に答える 1

6

(emguCVはわかりませんが、アイデアをお伝えします)

あなたは次のようにそれを行うことができます:

  1. 関数を使用して画像をR、G、B平面に分割しsplit()ます。
  2. 平面ごとに、キャニーエッジ検出を適用します。
  3. 次に、その中の輪郭を見つけ、関数を使用して各輪郭を近似しapproxPolyDPます。
  4. 近似等高線の座標数が3の場合、それは三角形である可能性が高く、値は三角形の3つの頂点に対応します。

以下は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()

以下は、青色の平面のキャニーダイアグラムです。

ここに画像の説明を入力してください

以下は最終出力です。三角形とそのベティックは、それぞれ緑と青の色でマークされています。

ここに画像の説明を入力してください

于 2012-07-11T05:39:57.047 に答える