colour.difference.delta_E_CAM02SCD#
- colour.difference.delta_E_CAM02SCD(Jpapbp_1: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100], Jpapbp_2: Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) NDArrayFloat[source]#
Compute the colour difference \(\Delta E'\) between two specified CAM02-SCD colourspace \(J'a'b'\) arrays using the Luo et al. (2006) formula.
- Parameters:
Jpapbp_1 (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – Standard / reference CAM02-SCD colourspace \(J'a'b'\) array as computed by the Luo et al. (2006) uniform colour space model.
Jpapbp_2 (Annotated[_Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | complex | bytes | str | _NestedSequence[complex | bytes | str], 100]) – Sample / test CAM02-SCD colourspace \(J'a'b'\) array as computed by the Luo et al. (2006) uniform colour space model.
- Returns:
Colour difference \(\Delta E'\).
- Return type:
Warning
The \(J'a'b'\) arrays should have been computed with the Luo et al. (2006) CAM02-SCD colourspace and not with the CIE L*a*b* colourspace.
Notes
Domain
Scale - Reference
Scale - 1
Jpapbp_1100
1
Jpapbp_2100
1
References
[LCL06]
Examples
>>> Jpapbp_1 = np.array([54.90433134, -0.08450395, -0.06854831]) >>> Jpapbp_2 = np.array([54.80352754, -3.96940084, -13.57591013]) >>> delta_E_CAM02SCD(Jpapbp_1, Jpapbp_2) 14.0551718...