您好,我想在图像上执行OCR我尝试了代码

时间:2018-03-14 05:38:46

标签: python python-2.7

我在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'))

1 个答案:

答案 0 :(得分:0)

可能是因为您在文档image.open

中使用小写Image.open而出现错误

试试这个:

import Image
import pytesseract

# Simple image to string
print(pytesseract.image_to_string(Image.open('ocr.jpg')))