HSV to RGB

时间:2023-03-09 02:18:04
HSV to RGB

HSV构成:

HSV to RGB

  • 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

HSV to RGB

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