HSI and HSV color space

后端 未结 2 1950
野的像风
野的像风 2021-01-01 23:16

What is the difference between HSI and HSV color space? I want to use HSI color space but I did not find any useful material for HSI. Is HSI the same as HSV?

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 23:53

    From the mathematical formula, the Hues are the same for HSV and HSI when you are trying to make the conversion from RGB to one of them.

    Saturation in HSL is dependent on max, min, and Lightness, while HSV's Saturation is only max and min dependent. (max and min are the maximum and minimum pixel value among R, G, B space).

    Value is max while the Lightness is (max + min)/2

    Appendix: RGB->HSV, RGB->HSL

提交回复
热议问题