3

我查看了 OpenCV 库的 JavaCV 包装器,我发现可以在 Java 中使用该库对图像进行人脸检测,但我想知道是否可以使用该库来检测图像上的交通警告标志和如何?

我从路上拍摄的照片看起来像这样: http ://www.4shared.com/photo/5QxoVDwd/041.html ,检测结果应该看起来像这样或类似:http://www.4shared。 com/photo/z_pL0lSK/overlay-0.html

编辑: 在我检测到红色后,我得到了这个图像:

在此处输入图像描述

而且我在检测到警告标志三角形形状并忽略所有其他形状时遇到问题。我尝试更改 cvApproxPoly 参数但没有结果。这是我的代码:

public void myFindContour(IplImage image)
{
    IplImage grayImage = cvCreateImage(cvGetSize(image), IPL_DEPTH_8U, 1);
    cvCvtColor(image, grayImage, CV_BGR2GRAY);

    CvMemStorage mem;
    CvSeq contours = new CvSeq();
    CvSeq ptr = new CvSeq();
    cvThreshold(grayImage, grayImage, 150, 255, CV_THRESH_BINARY);
    mem = cvCreateMemStorage(0);

    cvFindContours(grayImage, mem, contours, Loader.sizeof(CvContour.class) , CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE, cvPoint(0,0));
    Random rand = new Random();

    while (contours != null && !contours.isNull()) {
        if (contours.elem_size() > 0) {
            CvSeq points = cvApproxPoly(contours, Loader.sizeof(CvContour.class),
                    mem, CV_POLY_APPROX_DP, cvContourPerimeter(contours)*0.02, 0);
            Color randomColor = new Color(rand.nextFloat(), rand.nextFloat(), rand.nextFloat());
            CvScalar color = CV_RGB( randomColor.getRed(), randomColor.getGreen(), randomColor.getBlue());
            cvDrawContours(image, points, color, CV_RGB(0,0,0), -1, CV_FILLED, 8, cvPoint(0,0));
        }
        contours = contours.h_next();
    }

    cvSaveImage("myfindcontour.png", image);

}

这是我得到的输出(我为每个形状使用了不同的颜色,但在最终输出中,我将只使用白色作为检测到的警告标志,其他所有颜色都是黑色):

在此处输入图像描述

4

3 回答 3

2

您必须执行以下操作:

  1. 检测图像上的红色 - 您将获得1图像,其中:0 = 非红色,1 = 红色。
  2. 检测上一步图像中创建的三角形。你可以使用approxPoly函数来做到这一点。
于 2012-08-03T13:47:43.167 回答
0

看,首先找到轮廓区域。将其与预先计算的值进行比较,并将其保持在一个范围内

if(area>Mincontourarea && area<maxcontourare)
{
thats it  now we have the signboard do  
}

如果计算的值不会大于汽车轮廓,要让轮廓达到我的知识,你需要 Moments 运算符

momnts 运算符的代码:

Moments moment = moments((cv::Mat)contours[index]);
       area = moment.m00;  //m00 gives the area of the detected contour

将上面的代码放在上面讨论的 if 块之前

如果你想要 x 和 y 坐标再发一次..

于 2013-05-28T15:24:28.323 回答
0

看看我的回答,它是用 c++ 编写的,但是使用 opencv 它能够检测到路标,你可以把它作为一个很好的例子。 https://stackoverflow.com/a/52651521/8035924

于 2018-10-04T16:33:50.377 回答