Best algorithm for matching colours.

后端 未结 5 699
刺人心
刺人心 2020-11-30 21:47

I have an array of around 200 colours in RGB format. I want to write a program that takes any RGB colour and tries to match a colour from the array that is most \"similar\".

5条回答
  •  渐次进展
    2020-11-30 22:29

    Convert all of the colors to the CIE Lab color space and compute the distance in that space

    deltaE = sqrt(deltaL^2 + deltaA^2 + deltaB^2)
    

    Colors with the lowest deltaE are the most perceptually similar to each other.

提交回复
热议问题