我在im enter image description here时代正在执行 OCR ,因为我安装了pytesseract库,我使用的代码需要多一个库“Image”,cmd代码是什么在windows中安装那个包。我试过 - > “pip install image
”这不起作用,或者这个代码是正确的
代码是这个
import image
import pytesseract
print pytesseract.image_to_string(image.open('ocr.jpg'))
答案 0 :(得分:0)
可能是因为您在文档image.open
Image.open
而出现错误
试试这个:
import Image
import pytesseract
# Simple image to string
print(pytesseract.image_to_string(Image.open('ocr.jpg')))