在ubuntu18.04下使用python中cv2.imshow显示图像时,显示的是黑色图像,不能正常显示,如下图所示
具体原因为显示窗口时没有添加cv2.destroyAllWindows()
添加摧毁所有窗口后,重新运行代码显示正常。
img = cv2.imread(IMG_PATH)
cv2.namedWindow('test1', cv2.WINDOW_NORMAL)
cv2.imshow('test1', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
若以上方法不能解决,则可能使显示图像过大,窗口不能完全显示,可尝试cv2.resizeWindow(“WindowsName”, 500 , 400)
指定窗口大小。
img = cv2.imread(IMG_PATH)
cv2.namedWindow('test1', cv2.WINDOW_NORMAL)
cv2.resizeWindow(“test1”, 500, 400)
cv2.imshow('test1', img)
cv2.waitKey(0)
cv2.destroyAllWindows()