RGB から YUYV (YUY 4:2:2) 形式に変換する方法はありますか? OpenCVには逆の操作がありますが、何らかの理由でRGBからYUYVへの操作はありません。多分誰かがそれを行うコードを指すことができますか(OpenCVライブラリの外でも)?
アップデート
BGR を ARGB に変換し、次に ARGB を YUY2 形式に変換することで、この目的に使用できる libyuv ライブラリを見つけました (うまくいけば、これは YUYV 4:2:2 と同じです)。しかし、うまくいかないようです。yuyv バッファーの次元/型がどのように見えるべきか知っていますか? その歩幅は?
明確にするために、YUYV と YUY2 は同じ形式です。
UPDATE 2 これがlibyuvライブラリを使用する私のコードです:
Mat frame;
// Convert original image im from BGR to BGRA for further use in libyuv
cvtColor(im, frame, CVX_BGR2BGRA);
// Actually libyuv requires ARGB (i.e. reverse of BGRA), so I swap channels here
int from_to[] = { 0,3, 1,2, 2,1, 3,0 };
mixChannels(&frame, 1, &frame, 1, from_to, 4);
// This is the most confusing part. Not sure what argb_stride suppose to be - length of a row in bytes or size of single value in the array?
const uint8_t* argb_data = frame.data;
int argb_stride = 8;
// Also it is not clear what size of yuyv frame should be since we duplicate one Y
Mat yuyv(frame.rows, frame.cols, CVX_8UC2);
uint8_t* yuyv_data = yuyv.data;
int yuyv_stride = 16;
// Do actual conversion
libyuv::ARGBToYUY2(argb_data, argb_stride, yuyv_data, yuyv_stride,
frame.cols, frame.rows);
// Then I feed yuyv_data to video stream buffer and see green or purple image instead of video stream.
更新 3
Mat frame;
cvtColor(im, frame, CVX_BGR2BGRA);
// ARGB
int from_to[] = { 0,3, 1,2, 2,1, 3,0 };
Mat rgba(frame.size(), frame.type());
mixChannels(&frame, 1, &rgba, 1, from_to, 4);
const uint8_t* argb_data = rgba.data;
int argb_stride = rgba.cols*4;
Mat yuyv(rgba.rows, rgba.cols, CVX_8UC2);
uint8_t* yuyv_data = yuyv.data;
int yuyv_stride = width * 2;
int res = libyuv::ARGBToYUY2(argb_data, argb_stride, yuyv_data, yuyv_stride, rgba.cols, rgba.rows);