Defines objects related to Pointer’s Gamut volume computations.
Returns if given CIE XYZ tristimulus values are within Pointer’s Gamut volume.
Parameters: |
|
---|---|
Returns: | Is within Pointer’s Gamut. |
Return type: | bool |
Notes
Examples
>>> import numpy as np
>>> is_within_pointer_gamut(np.array([0.3205, 0.4131, 0.5100]))
array(True, dtype=bool)
>>> a = np.array([[0.3205, 0.4131, 0.5100],
... [0.0005, 0.0031, 0.0010]])
>>> is_within_pointer_gamut(a)
array([ True, False], dtype=bool)