【发布时间】:2015-03-10 04:42:22
【问题描述】:
我正在用 python 编写程序。我导入了opencv库。我的代码如下所示
import numpy
import cv2
img = cv2.imread('C:\\Users\\Anurag Bhai\\Pictures\\ll.jpg')
print img.shape
(256, 192, 3) %% output of the above line %%
cv2.imshow('image',img)
这是上面的程序。当我以 cv2.imshow 写作时。图片框正在打开,但显示没有响应
【问题讨论】: