我试图复制python CV2代码从图像文件中提取文本,它运行没有错误,但我仍然无法获得任何输出。
这是我的代码
>>> import cv2
>>> import numpy as np
>>> from matplotlib import pyplot as plt
/Users/upendrakumardevisetty/anaconda/lib/python2.7/site-packages/PIL/Image.py:81: RuntimeWarning: The _imaging extension was built for another version of Pillow or PIL
warnings.warn(str(v), RuntimeWarning)
>>> img = cv2.imread('road.png', 0)
>>> plt.imshow(img, cmap='gray', interpolation='bicubic')
<matplotlib.image.AxesImage object at 0x1099c6150>
>>> plt.xticks([]), plt.yticks([])
(([], <a list of 0 Text xticklabel objects>), ([], <a list of 0 Text yticklabel objects>))
>>> plt.show()
我在这里做错了什么?
答案 0 :(得分:0)
在您有机会展示之前,您正在退出计划。您应该在SCIPcopyOrig()
之后在脚本中再添加一行:
plt.show()
然后,您可以通过键入任意键强制关闭窗口。