我查看了 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);
}
这是我得到的输出(我为每个形状使用了不同的颜色,但在最终输出中,我将只使用白色作为检测到的警告标志,其他所有颜色都是黑色):