24 #include <fvutils/adapters/iplimage.h> 26 #include <fvutils/color/conversions.h> 28 #include <opencv/cv.h> 46 IplImageAdapter::convert_image_bgr(
unsigned char *buffer,
49 convert(YUV422_PLANAR, BGR, buffer, (
unsigned char *)image->imageData,
50 image->width, image->height);
59 IplImageAdapter::convert_image_yuv422_planar(IplImage *image,
60 unsigned char *buffer)
62 convert(BGR, YUV422_PLANAR, (
unsigned char *)image->imageData, buffer,
63 image->width, image->height);