How to change RGB color to HSV? In C# language. I search for very fast method without any external library.
|
|
Have you considered simply using System.Drawing namespace? For example:
Note that it's not exactly what you've asked for (see differences between HSL and HSV and the Color class does not have a conversion back from HSL/HSV but the latter is reasonably easy to add. |
|||||||||||||||||
|
|
Note that Color.GetSaturation() and Color.GetBrightness() return HSL values, not HSV.
The following C# code is what you want. It converts between RGB and HSV using the algorithms described on Wikipedia.
|
|||||||||
|
|
See Wikipedia. It should be relatively straightforward to convert those formulas into code. Just be careful about the ranges of your inputs and outputs: are they floats between 0 and 1, integers between 0 and 255, or something else? |
|||
|
|
|
There's a C implementation here: http://www.cs.rit.edu/~ncs/color/t_convert.html Should be very straightforward to convert to C#, as almost no functions are called - just calculations. found via Google |
|||
|
|
This is the VB.net version which works fine for me ported from the C code in BlaM's post.
|
||||
|
|
|
The EasyRGB has many color space conversions. Here is the code for the RGB->HSV conversion. |
|||
|
|
