【图像处理基础】话说图像格式转换

不问归期 提交于 2019-11-30 00:39:35

 

问题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函数

2. ColorConversionCodes;

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!