2

我正在使用停车摄像头,我需要从实时视频流中捕获车牌的图像。

我开发了一个 python GUI,我需要在同一个 GUI 中捕获和显示车牌的图像、文本。

任何人都可以帮助我开发基于 python 的基本功能。

4

2 回答 2

1

OpenCV 可能对此类任务有所帮助。这篇文章涵盖了类似的任务,并且可以为您提供一些关于如何解决该问题的灵感(但在 C++ 中): 如何使用 OpenCV 从图像中提取文本行

可以在这里找到另一个冗长的帖子(全是 python): OpenCV-Python 中的简单数字识别 OCR

于 2013-11-10T20:07:27.203 回答
0

Check out OpenALPR (http://www.openalpr.com). This should solve the problem of showing the number plate and the text within it. It's written in C++ though, so you'd need to hook that into your Python program.

于 2014-01-16T16:36:23.300 回答