检测图像中的矩形会产生不需要的结果(opencv,java)

时间:2014-04-11 15:03:22

标签: java opencv image-processing

我有这张照片,我已经进行了阈值处理,将其转换为二进制图像和黑白图像。见下图:

Example 1

我想用字母提取每个方框,这是通过以下代码完成的:

 List<MatOfPoint> contours = new ArrayList<MatOfPoint>();  
  Imgproc.findContours(destination3, contours, new Mat(), Imgproc.RETR_LIST,Imgproc.CHAIN_APPROX_SIMPLE);

         MatOfPoint2f approxCurve = new MatOfPoint2f();
         int x = 1;
         //For each contour found
         for (int i=0; i<contours.size(); i++)
         {
             //Convert contours(i) from MatOfPoint to MatOfPoint2f
             MatOfPoint2f contour2f = new MatOfPoint2f( contours.get(i).toArray() );
             //Processing on mMOP2f1 which is in type MatOfPoint2f
             double approxDistance = Imgproc.arcLength(contour2f, true)*0.02;
             Imgproc.approxPolyDP(contour2f, approxCurve, approxDistance, true);

             //Convert back to MatOfPoint
             MatOfPoint points = new MatOfPoint( approxCurve.toArray() );

             // Get bounding rect of contour
             Rect rect = Imgproc.boundingRect(points);
             if(rect.height > 50 && rect.height < 100) {
              // draw enclosing rectangle (all same color, but you could use variable i to make them unique)
             //Core.rectangle(destination, new Point(rect.x,rect.y), new Point(rect.x+rect.width,rect.y+rect.height), new Scalar(255, 0, 255), 3); 
             Rect roi = new Rect(rect.x, rect.y, rect.width, rect.height);
             Mat cropped = new Mat(destination3, roi);
             Highgui.imwrite("letter"+x+".jpg", cropped);
             x++;
             }
         }

但是提取的字母完全是黑色的,似乎它填写了白色字母以及下图所示。我该如何解决?我的代码出了什么问题?

current output

1 个答案:

答案 0 :(得分:5)

来自findContours()的文件:(强调我的)

  

注意:源图像被此函数修改。此外,该函数没有考虑图像的1像素边界(它填充0并用于算法中的邻居分析)因此,触摸图像边框的轮廓将被剪裁。

您看到的奇怪图片是findContours()destination3进行修改的结果。您应该可以通过调用findContours()将数据的深层副本传递到clone()来获得正确的结果。您调用findContours()的行将如下所示:

Imgproc.findContours(destination3.clone(), contours, new Mat(), Imgproc.RETR_LIST,Imgproc.CHAIN_APPROX_SIMPLE);
                             //   ^^ Vive la difference!