I am capturing images in real time using OpenCV, and I want to show these images in the OGRE window as a background. So, for each frame the background will change.

I am trying to use MemoryDataStream along with loadRawData to load the images into an OGRE window, but I am getting the following error:

OGRE EXCEPTION(2:InvalidParametersException): Stream size does not match calculated image size in Image::loadRawData at ../../../../../OgreMain/src/OgreImage.cpp (line 283)

An image comes from OpenCV with a size of 640x480 and frame->buffer is a type of Mat in OpenCV 2.3. Also, the pixel format that I used in OpenCV is CV_8UC3 (i.e., each pixel is 8-bits and each pixel contains 3 channels ( B8G8R8 ) ).

Ogre::MemoryDataStream* videoStream = new Ogre::MemoryDataStream((void*)frame->buffer.data, 640*480*3, true);
Ogre::DataStreamPtr ptr(videoStream,Ogre::SPFM_DELETE);
ptr->seek(0);
Ogre::Image* image =  new Ogre::Image();
image->loadRawData(ptr,640, 480,Ogre::PF_B8G8R8 );
texture->unload();
texture->loadImage(*image)

Why I always getting this memory error?

link|improve this question

50% accept rate
feedback

2 Answers

Quick idea, maybe memory 4-byte alignment issues ?

see Link 1 and Link 2

link|improve this answer
I tried 4 byte alignment but nothing didnt change. I always get a same memory problem – barzos Dec 14 '11 at 12:13
feedback

I'm not an Ogre expert, but does it work if you use loadDynamicImage instead?

EDIT : Just for grins try using the Mat fields to setup the buffer:

Ogre::Image* image = new Ogre::Image();
image->loadDynamicImage((uchar*)frame->buffer.data, frame->buffer.cols, frame->buffer.rows, frame->buffer.channels(), Ogre::PF_B8G8R8);

This will avoid copying the image data, and should let the Mat delete it's contents later.

link|improve this answer
It doesnt work, I try. My problem is more about an inequality between image size and buffer size – barzos Dec 14 '11 at 12:15
And, you're sure the frame size is 640x480x3? – mevatron Dec 14 '11 at 14:24
yes I am sure about that – barzos Dec 15 '11 at 7:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.