如何使用 PHP 安装和启动 tesseract-ocr

发布于 2024-08-07 01:13:21 字数 345 浏览 6 评论 0原文

我正在寻找一个 OCR 组件,可以使用 php 将文本图像转换为字符。

我从 google 代码 获得了一个脚本 tesseract-ocr。如何通过 php 安装并启动 tesseract-ocr ?

由于我是 PHP 初学者,我无法提供文档 他们提供了。我需要一些简单的步骤来安装和启动?提前致谢。

I am looking for a OCR component that converts images of text into characters using php.

I got a script tesseract-ocr from google code. How can I install and launch tesseract-ocr through php ?

As I am a beginner in PHP, I cant come up with the documentation they provided. I need some simple steps to install and launch ? thanks in advance.

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

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

发布评论

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

评论(2

表情可笑 2024-08-14 01:13:21

哇,这个答案很难。我是一名 PHP 程序员,链接到用 PHP 封装 C++ 的网站让我很头疼。

对于 PHP 新手来说,更好的方法是使用 PHP 中的 exec() 函数来调用命令行 tesseract 二进制文件。然后,您可以使用 PHP 中 exec 调用的输出,或者将输出发送到文件并在 PHP 中使用该文件。

Wow, that answer is the hard way. I'm a PHP programmer and the website linked for wrapping c++ with PHP makes my brain hurt.

A better way for someone who is new to PHP is to use the exec() function in PHP to call the command line tesseract binary. You can then work with the output from the exec call in PHP or send the output to a file and work with the file in PHP.

呆° 2024-08-14 01:13:21

您需要根据提供的文档设置 tesseract。

然后,一旦 tesseract 从命令行正常工作,您就可以进行扩展以从 PHP 访问 tesseract。

可以在此处找到有关在 PHP 扩展中包装 C++ 类的优秀指南

You will need to setup tesseract according to the documentation that is provided.

Then once tesseract is working correctly from the command-line, you can make the extension to access tesseract from PHP.

An excellent guide to wrapping C++ classes in a PHP extension can be found here

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