Reputation: 878
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
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