Images to video - converting to IplImage makes video blue
- by user891908
I want to create a video from images using opencv.
The strange problem is that if i will write image (bmp)
to disk and then load (cv.LoadImage) it it renders fine, but
when i try to load image from StringIO and convert
it to IplImage, it turns video to blue.
Heres the code:
import StringIO
output = StringIO.StringIO()
FOREGROUND = (0, 0, 0)
TEXT…