Hello,
I have a .bmp image sequence. I need to read and convert the R, G, B components of all images in the sequence. I am following the classical way but it is too slow,
And also I need to convert bit depth from 24 to 15. I am again following the classical way, in a loop for each pixel, but again it is too slow.
What is the fastest way to obtain these things?
I have a .bmp image sequence. I need to read and convert the R, G, B components of all images in the sequence. I am following the classical way but it is too slow,
Code:
Color pixelcolor=mybmp->GetPixel(i,j);
What is the fastest way to obtain these things?
Comment