mssb
mssb

Reputation: 878

Using C# how to convert RGB to YCrCb and YCrCb to RGB

Using C# I need to convert RGB value to YCrCb format and also YCrCb to RGB. please anyone suggest a way.

Upvotes: 2

Views: 819

Answers (1)

Moons
Moons

Reputation: 3854

Have a look into this (Complete source code): AForge Image Processing Library

They have provided you the complete class to do this:

You can easily locate functions like this RGB2YCbCr

Upvotes: 1

Related Questions