Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 EmguCV 中将 Bgr 图像转换为 YCbCr?
可能您可以使用方法 img.Convert();
不只是将 BGR 图像转换为 YCbCr ......
Image<Bgr, byte> BGR; Image<Ycc, Byte> YCrCbFrame = BGR.Convert<Ycc, Byte>();