使用stdout作为输出时,在tesseract中禁用“页面x”的输出

时间:2019-01-16 13:49:15

标签: tesseract

我尝试将tesseract用于图片的OCR,并且我想禁用tesseract正在扫描的页面的某些详细输出:

:~$ tesseract stdin stdout -l eng txt
Page 1
<ocr output>

是否可以从输出中删除“页面1”?

:~$ tesseract --version
tesseract 4.0.0-146-gc39a

2 个答案:

答案 0 :(得分:2)

在命令末尾尝试quiet选项。

答案 1 :(得分:0)

如果您只想查看OCR文本,则只需将stderr重定向为null。

foo | tesseract - - 2>/dev/null

或者,当然,如果需要,也可以保存到日志文件。