colour.difference.delta_E_CAM02LCD¶
- colour.difference.delta_E_CAM02LCD(Jpapbp_1, Jpapbp_2)[source]¶
Returns the difference \(\Delta E'\) between two given Luo et al. (2006) CAM02-LCD colourspaces \(J'a'b'\) arrays.
- Parameters
Jpapbp_1 (array_like) – Standard / reference Luo et al. (2006) CAM02-LCD colourspaces \(J'a'b'\) array.
Jpapbp_2 (array_like) – Sample / test Luo et al. (2006) CAM02-LCD colourspaces \(J'a'b'\) array.
- Returns
Colour difference \(\Delta E'\).
- Return type
numeric or ndarray
Notes
Domain
Scale - Reference
Scale - 1
Jpapbp_1Jp_1: [0, 100]ap_1: [-100, 100]bp_1: [-100, 100]Jp_1: [0, 1]ap_1: [-1, 1]bp_1: [-1, 1]Jpapbp_2Jp_2: [0, 100]ap_2: [-100, 100]bp_2: [-100, 100]Jp_2: [0, 1]ap_2: [-1, 1]bp_2: [-1, 1]References
[]
Examples
>>> Jpapbp_1 = np.array([54.90433134, -0.08450395, -0.06854831]) >>> Jpapbp_2 = np.array([54.80352754, -3.96940084, -13.57591013]) >>> delta_E_CAM02LCD(Jpapbp_1, Jpapbp_2) 14.0555464...