Getting the bounding box of the recognized words using python-tesseract

前端 未结 7 1140
不思量自难忘°
不思量自难忘° 2020-11-30 19:21

I am using python-tesseract to extract words from an image. This is a python wrapper for tesseract which is an OCR code.

I am using the following code for getting th

7条回答
  •  执笔经年
    2020-11-30 20:16

    Would comment under lennon310 but don't have enough reputation to comment...

    To run his command line command tesseract test.jpg result hocr in a python script:

    from subprocess import check_call
    
    tesseractParams = ['tesseract', 'test.jpg', 'result', 'hocr']
    check_call(tesseractParams)
    

提交回复
热议问题