How do I separates text region from image in java

匿名 (未验证) 提交于 2019-12-03 01:35:01

问题:

I am working on OCR to recognised passport details, Since I am using Tesseract Java API. To achieve better accuracy I need to divide the whole image (can be of .png,.jpeg, .tiff) only into text regions. Is there any open source java library which separates text regions from image. Please give me any suggestions on it.

回答1:

Marvin provides a method exactly for this purpose.

public static java.util.List<MarvinSegment> findTextRegions(MarvinImage imageIn,                                         int maxWhiteSpace,                                         int maxFontLineWidth,                                         int minTextWidth,                                         int grayScaleThreshold)

Input image:

Output image:

Source code:

import static marvin.MarvinPluginCollection.*;  public class TextRegions{          public static void main(String[] args) {          MarvinImage image = MarvinImageIO.loadImage("./res/passport.png");         MarvinImage originalImage = image.clone();         List<MarvinSegment> segments = findTextRegions(image, 15, 8, 30, 150);          for(MarvinSegment s:segments){             if(s.height >= 5){                 originalImage.drawRect(s.x1, s.y1, s.x2-s.x1, s.y2-s.y1, Color.red);             }         }          MarvinImageIO.saveImage(originalImage, "./res/passport_2.png");     } }


回答2:

Your best bet is to use OpenCV (there are bindings for Java).

The problem is hard and there's no solution that works in all cases. I would check suggestions from threads like this one and try to find the best solution for your specific case.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!