此模块有问题 Image::OCR::Tesseract
我安装了以下模块 Image::OCR::Tesseract 和 ppm
我安装了 activestate perl v5.8.8,当我尝试运行以下代码时,
use Image::OCR::Tesseract 'get_ocr';
my $image = 'my_image.jp';
my $text = get_ocr($image);
:我收到以下错误消息:
无效参数 - -compress
1024 at C:/Perl /site/lib/Image/OCR/Tesseract.pm 第 77 行。
有人可以帮忙解决这个错误消息/或者如果有人以前遇到过这个问题吗?
I have activestate perl v5.8.8 installed i install the following module Image::OCR::Tesseract with the ppm
when I try to run the following code:
use Image::OCR::Tesseract 'get_ocr';
my $image = 'my_image.jp';
my $text = get_ocr($image);
I get the below error messgae :
Invalid Parameter - -compress
1024 at C:/Perl/site/lib/Image/OCR/Tesseract.pm line 77.
Could someone help what could be this error message /or if someone have this problem beofre ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从
Image::OCR::Tesseract
,这个错误是由于convert
不理解-compress
参数引起的。也许,您可以尝试将ImageMagick
更新到较新的版本。Judging by the source of
Image::OCR::Tesseract
, this error is caused byconvert
not understanding the-compress
parameter. Perhaps, you can try updatingImageMagick
to a newer version.