使用 python / django 进行复杂的图像分析
我正在开发一个 django 项目,该项目分析包含文本的图像,并 (1) 推断图像是否需要旋转以及 (2) 文本区域在哪里。
我目前正在使用 PIL 对这些图像进行一些更简单的处理,但我不太确定如何使用 PIL 或其他库来执行这两项任务。我想知道以前是否有人这样做过,以及是否有库/API 可以帮助开发。
I am working on a django project that analyzes images that contain text and (1) infers if the image needs to be rotated and (2) where text areas are.
I am currently using PIL to do some more simpler processing of these images but I am not quite sure how I can use PIL or other libraries to perform both tasks. I was wondering if anyone has done this before and if there are libraries / api available to help in the development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OpenCV 可能是后流行的开源图像处理库。它是 C/C++,但有 python 绑定:
http://opencv.willowgarage.com/wiki/
和 python 文档
http://opencv.willowgarage.com/documentation/python/index.html
我从来没有用它做过OCR,但我确信它有能力
OpenCV is probably the post popular open source image processing library. It's C/C++ but there are python bindings:
http://opencv.willowgarage.com/wiki/
and the python docs
http://opencv.willowgarage.com/documentation/python/index.html
I've never done an OCR with it, but I'm sure it's capable
我同意 @pastylegs 的观点,即 OpenCV 是你最好的初始选择。如果您需要专门针对 OCR 的内容,您还可以查看 ocropus。
I agree with @pastylegs that OpenCV is your best initial bet. If you need stuff specific to OCR you could also look at ocropus.