HSV to RGB

Posted sen-c7

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HSV to RGB相关的知识,希望对你有一定的参考价值。

HSV构成:

技术分享图片

  • Hue : the color type (red, blue, or yellow) Ranges from 0 to 360°

  • Saturation : the intensity of the color. Ranges from 0 to 100%

  • Brightness (or Value) : the brightness of the color. Ranges from 0 to 100%

 

HSV to RGB conversion formula

When 0 ≤ H < 360, 0 ≤ S ≤ 1 and 0 ≤ V ≤ 1:

C = V × S

X = C × (1 - |(H / 60°) mod 2 - 1|)

m = V - C

技术分享图片

(R,G,B) = ((R‘+m)×255, (G‘+m)×255, (B‘+m)×255)

以上是关于HSV to RGB的主要内容,如果未能解决你的问题,请参考以下文章

RGB与HSV之间的转换公式及颜色表

RGB色彩空间和HSV色彩空间的理解

由RGB到HSV颜色空间的理解

如何将 RGB 颜色转换为 HSV?

HSV (0 .. 255) 到 RGB (0 .. 255) [重复]

javascript中的RGB到HSV颜色? [关闭]