ocr和图像预处理技术

发布于 2024-10-02 14:33:40 字数 295 浏览 2 评论 0原文

大家好,我有一组类似于汽车牌照照片的图像。

我想知道如何在将图像发送到 OCR 引擎以确定文本之前对其进行预处理。

我希望最终能够仅在车牌的白色内容上裁剪输入。

实际图像看起来像这样:

input

并且最终应该是这样的(颜色深度不重要) ouput

感谢您的帮助。 问候, 鲍勃

Hi all I have a collection of images that are similar to photos of car registration plates.

I am wondering how to pre process the image before sending it to an OCR engine to determine the text.

I would like to eventually be able to crop the input on only the white content of the registration plate.

The actual image would look something like this:

input

and should end up something like this (color depth not important)
ouput

Thank for any help.
Regards,
Bob

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋檐 2024-10-09 14:33:40
  • 分割图像(看看这个)。

  • 使用灰度阈值对片段进行分类(因为您只是在寻找白色)。

  • 使用白色片段边界框(或边界框,如果图像分解为多个片段)裁剪图像。 这可能不适用于白色汽车 - 但为这种情况建立一些规则应该不会太困难。

  • 查看tesseract-ocr来提取文本。

  • Segment the image (take a look at this).

  • Classify segments using a gray scale threshold (since you're just looking for white).

  • Crop the image by using the white segment bounding box (or bounding boxes, if it breaks down in more than one segment). This is probably not going to work for white cars - but it should not be too difficult to establish a few rules for this case.

  • Take a look at tesseract-ocr to extract the text.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文