import cv2 as cv
cv.NamedWindow("window_a", cv.CV_WINDOW_AUTOSIZE)
AttributeError: 'module' object has no attribute 'NamedWindow'
What is the analogue of this function in OpenCV 3?
import cv2 as cv
cv.NamedWindow("window_a", cv.CV_WINDOW_AUTOSIZE)
AttributeError: 'module' object has no attribute 'NamedWindow'
What is the analogue of this function in OpenCV 3?