delta_e_cie2000 gives 3 different Calcualations #112
Description
Hi, so i am using the following two rgb values to compare if they are similar (They are shades of light to mid dark green)
color1_rgb = sRGBColor(143,176,132)
color2_rgb = sRGBColor(140,184,164)
With Python code, i get the result
23.761947751526964
With Colormine website's delta_e_cie2000 Calculator http://colormine.org/delta-e-calculator/Cie2000
12.1502
With JavaScript Library http://zschuessler.github.io/DeltaE/
6.196918217607274
Now, i personally think the answers from the 2nd and third method make more sense as they are similar and hence difference is low. I am going by this table Below:
<= 1.0: Not perceptible by the human eye
1-2: Perceptible through close observation
2-10: Perceptible at a glance
11-49: Colors are more similar than the opposite
100: Colors are exactly the opposite
SO why so much difference in the result ? is there a way to use the website calculation or JS library calculation in python code
Thanks :)