Defines \(\Delta E_{ab}\) colour difference computation objects:
The following methods are available:
References
[1] | http://en.wikipedia.org/wiki/Color_difference (Last accessed 29 August 2014) |
Returns the difference \(\Delta E_{ab}\) between two given CIE Lab array_like colours using CIE 1976 recommendation.
Parameters: |
|
---|---|
Returns: | Colour difference \(\Delta E_{ab}\). |
Return type: | numeric |
References
[2] | http://brucelindbloom.com/Eqn_DeltaE_CIE76.html (Last accessed 24 February 2014) |
Examples
>>> lab1 = np.array([100, 21.57210357, 272.2281935])
>>> lab2 = np.array([100, 426.67945353, 72.39590835])
>>> delta_E_CIE_1976(lab1, lab2)
451.7133019...
Returns the difference \(\Delta E_{ab}\) between two given CIE Lab array_like colours using CIE 1994 recommendation.
Parameters: |
|
---|---|
Returns: | Colour difference \(\Delta E_{ab}\). |
Return type: | numeric |
References
[3] | http://brucelindbloom.com/Eqn_DeltaE_CIE94.html (Last accessed 24 February 2014) |
Examples
>>> lab1 = np.array([100, 21.57210357, 272.2281935])
>>> lab2 = np.array([100, 426.67945353, 72.39590835])
>>> delta_E_CIE_1994(lab1, lab2)
88.3355530...
>>> delta_E_CIE_1994(lab1, lab2, textiles=False)
83.7792255...
Returns the difference \(\Delta E_{ab}\) between two given CIE Lab array_like colours using CIE 2000 recommendation.
Parameters: |
|
---|---|
Returns: | Colour difference \(\Delta E_{ab}\). |
Return type: | numeric |
References
[4] | http://brucelindbloom.com/Eqn_DeltaE_CIE2000.html (Last accessed 24 February 2014) |
Examples
>>> lab1 = np.array([100, 21.57210357, 272.2281935])
>>> lab2 = np.array([100, 426.67945353, 72.39590835])
>>> delta_E_CIE_2000(lab1, lab2)
94.0356490...
Returns the difference \(\Delta E_{ab}\) between two given CIE Lab array_like colours using Colour Measurement Committee recommendation.
The quasimetric has two parameters: Lightness (l) and chroma (c), allowing the users to weight the difference based on the ratio of l:c. Commonly used values are 2:1 for acceptability and 1:1 for the threshold of imperceptibility.
Parameters: |
|
---|---|
Returns: | Colour difference \(\Delta E_{ab}\). |
Return type: | numeric |
References
[5] | http://brucelindbloom.com/Eqn_DeltaE_CMC.html (Last accessed 24 February 2014) |
Examples
>>> lab1 = np.array([100, 21.57210357, 272.2281935])
>>> lab2 = np.array([100, 426.67945353, 72.39590835])
>>> delta_E_CMC(lab1, lab2)
172.7047712...
Supported Delta E computations methods.
Aliases:
Returns the Lightness \(L^*\) using given method.
Parameters: |
|
---|---|
Returns: | Colour difference \(\Delta E_{ab}\). |
Return type: | numeric |
Examples
>>> lab1 = np.array([100, 21.57210357, 272.2281935])
>>> lab2 = np.array([100, 426.67945353, 72.39590835])
>>> delta_E(lab1, lab2)
172.7047712...
>>> delta_E(lab1, lab2, method='CIE 1976')
451.7133019...
>>> delta_E(lab1, lab2, method='CIE 1994')
88.3355530...
>>> delta_E(lab1, lab2, method='CIE 1994', textiles=False)
83.7792255...
>>> delta_E(lab1, lab2, method='CIE 2000')
94.0356490...