使用 python / django 进行复杂的图像分析

发布于 2024-11-17 08:06:06 字数 167 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(2

如果没有你 2024-11-24 08:06:06

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

活雷疯 2024-11-24 08:06:06

我同意 @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.

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