I am trying to use a custom made png image on OpenCV but it seems that the image is always messed up when read.
The original image: enter image description here
When I display it using OpenCV, it looks like: enter image description here
My code:
import cv2
img = cv2.imread("bottom_left.png", 0)
cv2.imshow("frame", img)
cv2.waitKey(0)
cv2.destroyAllWindows()