【发布时间】:2012-05-19 12:35:21
【问题描述】:
如何在 EmguCV 中将 Bgr 图像转换为 YCbCr?
【问题讨论】:
标签: emgucv
如何在 EmguCV 中将 Bgr 图像转换为 YCbCr?
【问题讨论】:
标签: emgucv
也许你可以使用方法 img.Convert();
【讨论】:
不只是将 BGR 图像转换为 YCbCr...
Image<Bgr, byte> BGR;
Image<Ycc, Byte> YCrCbFrame = BGR.Convert<Ycc, Byte>();
【讨论】: