Question

how to convert a Bgr image to YCbCr in EmguCV ?

Was it helpful?

Solution

Probably you could use the method img.Convert();

OTHER TIPS

one does not simply Convert a BGR Image into YCbCr...

Image<Bgr, byte> BGR;

    Image<Ycc, Byte> YCrCbFrame = BGR.Convert<Ycc, Byte>();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top