使用imshow()OpenCV无法显示图像

时间:2017-06-19 21:04:12

标签: python opencv imshow

加载图像并尝试显示时,我遇到了一个奇怪的问题(但没有错误)。这是我正在使用的代码:

import numpy as np  
import cv2  

# I'm using the full-path in the actual document   
img = cv2.imread('shapes.jpg')  
gray = cv2.imread('shapes.jpg',0)  

#not displaying anything currently  
cv2.imshow('gray', img)  
cv2.waitKey(0)  
cv2.destroyAllWindows()  

我得到的是top part of a window。使用cv2.namedWindow('gray', cv2.WINDOW_NORMAL)时,我能够最大化图像,我可以看到它确实加载了图像,但它是surrounded by gray

有什么想法吗?

0 个答案:

没有答案