AttributeError: module ‘cv2.cv2‘ has no attribute ‘destroyALLWindows‘

import cv2
import matplotlib.pyplot as plt
import numpy as np
%matplotlib inline

img = cv2.imread('cat.jpg')

cv2.imshow("image", img)
cv2.waitKey(10000)
cv2.destroyALLWindows()

运行该代码段可以正常显示图片

AttributeError: module ‘cv2.cv2‘ has no attribute ‘destroyALLWindows‘_第1张图片

但当按下任意键想要关闭 image窗口时显示如下错误:

AttributeError: module ‘cv2.cv2‘ has no attribute ‘destroyALLWindows‘_第2张图片

 这种情况下都是犯了很一个很粗心的错误:

 cv2.destroyAllWindows()

All中的 l 是小写!!!!!

All中的 l 是小写!!!!!

All中的 l 是小写!!!!!

修改后就可以正常运行了。

你可能感兴趣的:(python,opencv,python)