currently I'm trying to convert the Bayer RGGB data to an iplimage. I thought cvtColor might work but it requires "mat" instead of iplimage.
cvtColor(img->imageData, tmpimageData, CV_BayerBG2BGR, 0);
Is there a workaround, maybe you can convert Bayer RGGB to mat and then convert mat to iplimage? I'm really stuck with this problem, any help is greatly appreciated!
OpenCV can easily convert between Mat and Iplimage. E.g., if
img
is anIplImage*
:See Mat::Mat(const IplImage* img, bool copyData=false) and Mat::operator IplImage()