我需要使用 pytesseract 将包含几页的 image.tif 转录为文本。我有下一个代码:
> From PIL import Image
> Import pytesseract
> Pytesseract.pytesseract.tesseract_cmd = 'C: / Program Files (x86) / Tesseract-
> OCR / tesseract '
> Print (pytesseract.image_to_string (Image.open ('CAMARA.tif'), lang = "spa"))
问题是只提取第一页。我怎样才能提取所有这些?