I have been trying to load .png files with transparency channel (RGB and Alph) with no luck. It appears that openCV strips the 4th channel out of the image. Is there any met
According to the documentation, OpenCV supports alpha channel on PNGs.
Just call the imread function using CV_LOAD_IMAGE_UNCHANGED as flags like this:
cvLoadImage("file.png", CV_LOAD_IMAGE_UNCHANGED)