Mac + pycharm
这样的代码:
img = cv2.imread(images[0])
cv2.imshow('Image',img)
cv2.waitKey(0)
cv2.destroyAllWindows()
没错,Pycharm一直运行,几分钟后,我不得不自己停下来。
顺便说一句,图像只有16KB
尝试使用matplotlib即可。
plt.imshow(img)
plt.show()
所以没有文件错误
答案 0 :(得分:0)
将图像显示代码更改为此:
img = cv2.imread(images[0])
cv2.imshow('Image',img)
if cv2.waitKey(0) == 27 #waits for the ESC key to be pressed
cv2.destroyAllWindows()