from PIL import Image
im = Image.open('withmed.jpg',0)
im.show('image',img)
k = cv2.waitkey(0)
if k == 27:
cv2.destroyAll windows
我正在尝试打开保存在桌面上的jpg图像。但是在运行这段代码时会出现错误
Traceback (most recent call last):
File "/home/anusha/aswathy.py", line 5, in <module>
cv2.imshow('image',img)
error: /build/buildd/opencv-2.4.8+dfsg1/modules/highgui/src/window.cpp:269:
error: (-215) size.width>0 && size.height>0 in function imshow
答案 0 :(得分:0)
而不是:
im = Image.open('withmed.jpg',0)
尝试:
im = Image.open('withmed.jpg')
如果这不起作用,请在事后添加print(im)
并告诉我们它的内容。