I'm totally new in OpenCV so hopefully that's not a too stupid question.
As a result of a OpenCV operation (capturing image data from a device) I get back a IplImage.
Depending on its real size I first have to scale it an next convert it to a plain, raw 24 bit RGB format.
For first operation I guess there is some scaling function available. But how about accessing and converting the raw image data? I could not find anything suitable within IplImage structure - at least I could not identify a member as a pointer to the image data.
Any operation that slowly reads out every songle pixel is not suitable, I have to do that operation very often and therefor need fast access to the data.