如何转换 RGB 颜色到 HSV?

如何使用 C # 将 RGB 颜色转换为 HSV?
我已经在不使用任何外部库的情况下搜索了一个快速方法。

120392 次浏览

这里有一个 C 实现:

Http://www.cs.rit.edu/~ncs/color/t_convert.html

转换成 C # 应该非常简单,因为几乎没有函数被调用——只是计算。

通过 谷歌找到的

您是否考虑过简单地使用 System.Drawingname 空间? 例如:

System.Drawing.Color color = System.Drawing.Color.FromArgb(red, green, blue);
float hue = color.GetHue();
float saturation = color.GetSaturation();
float lightness = color.GetBrightness();

请注意,它不完全是您所要求的(请参阅 HSL 和 HSV 之间的差异,Color 类没有从 HSL/HSV 返回的转换,但后者是合理的 很容易加

这是 VB.net 的版本,从 BlaM 的文章中的 C 代码移植过来对我来说很好用。

这里有一个 C 实现:

Http://www.cs.rit.edu/~ncs/color/t_convert.html

转换到 C # 应该非常简单,因为几乎没有函数被调用-只是 > 计算。


Public Sub HSVtoRGB(ByRef r As Double, ByRef g As Double, ByRef b As Double, ByVal h As Double, ByVal s As Double, ByVal v As Double)
Dim i As Integer
Dim f, p, q, t As Double


If (s = 0) Then
' achromatic (grey)
r = v
g = v
b = v
Exit Sub
End If


h /= 60 'sector 0 to 5
i = Math.Floor(h)
f = h - i 'factorial part of h
p = v * (1 - s)
q = v * (1 - s * f)
t = v * (1 - s * (1 - f))


Select Case (i)
Case 0
r = v
g = t
b = p
Exit Select
Case 1
r = q
g = v
b = p
Exit Select
Case 2
r = p
g = v
b = t
Exit Select
Case 3
r = p
g = q
b = v
Exit Select
Case 4
r = t
g = p
b = v
Exit Select
Case Else   'case 5:
r = v
g = p
b = q
Exit Select
End Select
End Sub

请注意,Color.GetSaturation()Color.GetBrightness()返回的是 HSL 值,而不是 HSV 值。
下面的代码演示了这种差异。

Color original = Color.FromArgb(50, 120, 200);
// original = {Name=ff3278c8, ARGB=(255, 50, 120, 200)}


double hue;
double saturation;
double value;
ColorToHSV(original, out hue, out saturation, out value);
// hue        = 212.0
// saturation = 0.75
// value      = 0.78431372549019607


Color copy = ColorFromHSV(hue, saturation, value);
// copy = {Name=ff3278c8, ARGB=(255, 50, 120, 200)}


// Compare that to the HSL values that the .NET framework provides:
original.GetHue();        // 212.0
original.GetSaturation(); // 0.6
original.GetBrightness(); // 0.490196079

下面的 C # 代码就是您想要的。它使用 维基百科中描述的算法在 RGB 和 HSV 之间进行转换。hue的范围是0-360,saturationvalue的范围是0-1。

public static void ColorToHSV(Color color, out double hue, out double saturation, out double value)
{
int max = Math.Max(color.R, Math.Max(color.G, color.B));
int min = Math.Min(color.R, Math.Min(color.G, color.B));


hue = color.GetHue();
saturation = (max == 0) ? 0 : 1d - (1d * min / max);
value = max / 255d;
}


public static Color ColorFromHSV(double hue, double saturation, double value)
{
int hi = Convert.ToInt32(Math.Floor(hue / 60)) % 6;
double f = hue / 60 - Math.Floor(hue / 60);


value = value * 255;
int v = Convert.ToInt32(value);
int p = Convert.ToInt32(value * (1 - saturation));
int q = Convert.ToInt32(value * (1 - f * saturation));
int t = Convert.ToInt32(value * (1 - (1 - f) * saturation));


if (hi == 0)
return Color.FromArgb(255, v, t, p);
else if (hi == 1)
return Color.FromArgb(255, q, v, p);
else if (hi == 2)
return Color.FromArgb(255, p, v, t);
else if (hi == 3)
return Color.FromArgb(255, p, q, v);
else if (hi == 4)
return Color.FromArgb(255, t, p, v);
else
return Color.FromArgb(255, v, p, q);
}

EasyRGB有许多颜色空间转换。 这是密码用于 RGB-> HSV 转换。

首先: 确保你有一个颜色作为位图,像这样:

Bitmap bmp = (Bitmap)pictureBox1.Image.Clone();
paintcolor = bmp.GetPixel(e.X, e.Y);

(e 来自事件处理程序,它选择了我的颜色!)

不久前我遇到这个问题时,我首先得到了 rgba (红色、绿色、蓝色和 alpha)值。 接下来,我创建了3个浮动: 浮动色调,浮动饱和度,浮动亮度。然后你只需做:

hue = yourcolor.Gethue;
saturation = yourcolor.GetSaturation;
brightness = yourcolor.GetBrightness;

全部看起来像这样:

Bitmap bmp = (Bitmap)pictureBox1.Image.Clone();
paintcolor = bmp.GetPixel(e.X, e.Y);
float hue;
float saturation;
float brightness;
hue = paintcolor.GetHue();
saturation = paintcolor.GetSaturation();
brightness = paintcolor.GetBrightness();

如果现在想在标签中显示它们,只需要:

yourlabelname.Text = hue.ToString;
yourlabelname.Text = saturation.ToString;
yourlabelname.Text = brightness.ToString;

现在,您已经将 RGB 值转换为 HSV 值:)

希望这个能帮上忙

我也是因为同样的需求才来到这里。

下面我将分享目前为止我所能找到的最好和最简单的解决方案。
这是一个修改过的答案,来自 Greg 的(在这里发现的) ; 但是使用了一个简单易懂的代码。

对于那些正在学习的人,我已经添加了一些参考资料,值得检查,以便理解。


参考文献

  1. “ Lukas Stratmann”HSV 模型工具(包括其他模型系统: CMY/CMYK/HSL)
  2. 平面设计中的 HSV 色彩模型
  3. “测定 RGB 颜色感知亮度的公式”
  4. 从 RGB 获取色调的最快公式
  5. “颜色转换算法”
  6. “将 RGB 颜色模型改为 HSV 颜色模型的程序”
  7. “ RGB 到 HSV 颜色转换算法”
  8. “ RGB 到 HSV 颜色空间转换(C)”
  9. “如何将 RGB 颜色转换为 HSV”

密码

    /// <summary> Convert RGB Color to HSV. </summary>
/// <param name="color"></param>
/// <returns> A double[] Containing HSV Color Values. </returns>
public double[] rgbToHSV(Color color)
{
double[] output = new double[3];


double hue, saturation, value;


int max = Math.Max(color.R, Math.Max(color.G, color.B));
int min = Math.Min(color.R, Math.Min(color.G, color.B));


hue = color.GetHue();
saturation = (max == 0) ? 0 : 1d - (1d * min / max);
value = max / 255d;


output[0] = hue;
output[1] = saturation;
output[2] = value;


return output;
}