问题1:
COLOR_YUV2BGR_YUY2
这些格式是什么?COLOR_YUV?BGR_YUY2?怎么来的?
问题2:
The video camera capture software is customized to work with the UVC driver. The capture is taken in YUY2 format, and may therefore require conversion
从摄像头获取图像之后的处理
cvtColor(frame, frame1, COLOR_YUV2BGR_YUY2);
不太理解说明文档说是捕获的YUY2格式,为什么cvtColor是从COLOR_YUV格式转换成BGR_YUY2格式?
参考
1. cvtColor函数;
完