A similar question was asked, but without an answer here .
How can I view a grayscale image in OpenCV with alpha? For example, if I try to read the following image, all I get is a 2d array of all zeros.

image = cv2.imread('1.png', cv2.IMREAD_UNCHANGED)
image.shape
(480, 960)
source
share