我正在尝试从终端运行tesseract tesseract_inputs/test.png stdout > textfile.txt
,并将其返回到python
,或者只是让结果保留在文本文件中。我无法弄清楚我需要输入到子进程或系统中以实现此目的。
subprocess.run('tesseract tesseract_inputs/test.png stdout > textfile.txt')
或
os.system('tesseract tesseract_inputs/test.png stdout > textfile.txt')