deltaE_ciede94
-
skimage.color.deltaE_ciede94(lab1, lab2, kH=1, kC=1, kL=1, k1=0.045, k2=0.015)[source] -
Color difference according to CIEDE 94 standard
Accommodates perceptual non-uniformities through the use of application specific scale factors (
kH,kC,kL,k1, andk2).Parameters: lab1 : array_like
reference color (Lab colorspace)
lab2 : array_like
comparison color (Lab colorspace)
kH : float, optional
Hue scale
kC : float, optional
Chroma scale
kL : float, optional
Lightness scale
k1 : float, optional
first scale parameter
k2 : float, optional
second scale parameter
Returns: dE : array_like
color difference between
lab1andlab2Notes
deltaE_ciede94 is not symmetric with respect to lab1 and lab2. CIEDE94 defines the scales for the lightness, hue, and chroma in terms of the first color. Consequently, the first color should be regarded as the “reference” color.
kL,k1,k2depend on the application and default to the values suggested for graphic artsParameter Graphic Arts Textiles kL1.000 2.000 k10.045 0.048 k20.015 0.014 References
[R37] http://en.wikipedia.org/wiki/Color_difference [R38] http://www.brucelindbloom.com/index.html?Eqn_DeltaE_CIE94.html
Please login to continue.