Hello,
I was wondering what was the method to obtain,
- from a cv::Mat obtained by imread({myFile}, CV_LOAD_IMAGE_COLOR)
- a cv::Mat identical to the one obtained by imread({myFile}, CV_LOAD_IMAGE_UNCHANGED)
If I well understand, i need to remove the alpha channel from my cv::Mat ? so I have to remove one dimension of my matrix by iterate over cols & rows ?
(I precise if it wasn't obvious, i dunno anything in image treatment ;))
Thanx a lot :)