diff options
Diffstat (limited to 'test_diff.py')
-rw-r--r-- | test_diff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test_diff.py b/test_diff.py index 775752f..3d55963 100644 --- a/test_diff.py +++ b/test_diff.py @@ -15,8 +15,8 @@ if __name__ == "__main__": illuminant = SpectralDistribution(ILLUMINANT_SDS["D65"]).align(shape) illuminant_XYZ = sd_to_XYZ(illuminant) / 100 - target = np.array([22.955, 46.374, 3.5981]) # Some arbitrary Lab colour - xs = np.linspace(-100, 100, 500) + target = np.array([72., -20., 61.]) # Some arbitrary Lab colour + xs = np.linspace(-10, 10, 500) h = xs[1] - xs[0] # Vary one coefficient at a time |