我正在尝试使用perl从扫描的PDF中获取文本,所以我在perl中使用了PDF::OCR2模块,但我无法安装此模块,安装Image::OCR::Tesseract模块失败,我使用的是CentOS7,这是我在安装过程中的错误。
one dependency not OK (Image::OCR::Tesseract); additionally test harness failed
/usr/bin/make test -- NOT OK
//hint// to see the cpan-testers results for installing this module, try:
我正在尝试使用tesseract php,但失败了。我得到了这个错误: Fatal error: Uncaught thiagoalessio\TesseractOCR\TesseractNotFoundException: Error! The command "tesseract" was not found. Make sure you have Tesseract OCR installed on your system: https://github.com/tesseract-ocr/tesseract
The current $PATH is C:\Wind
我在Google云函数https://ocr.space/ocrapi上使用这个api,这是我已经部署的函数
def ocr_space_url(request):
request_json = request.get_json()
request_args = request.args
if request_json and 'url' in request_json:
url = request_json['url']
elif request_args and 'url' in requ