-
Notifications
You must be signed in to change notification settings - Fork 5
/
cielch.lisp
138 lines (121 loc) · 4.9 KB
/
cielch.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
;;; cielch.lisp --- CIE L*C*h color space.
;; Copyright (C) 2016 Ralph Schleicher
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions
;; are met:
;;
;; * Redistributions of source code must retain the above copyright
;; notice, this list of conditions and the following disclaimer.
;;
;; * Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in
;; the documentation and/or other materials provided with the
;; distribution.
;;
;; * Neither the name of the copyright holder nor the names of its
;; contributors may be used to endorse or promote products derived
;; from this software without specific prior written permission.
;;
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
;; FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
;; COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
;; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
;; BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
;; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
;; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
;; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
;; ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
;; POSSIBILITY OF SUCH DAMAGE.
;;; Code:
(in-package :rs-colors)
(defvar *cielch-default-white-point* cie-1931-white-point-d50
"The default white point for colors in the CIE L*C*h color space.
Default value is the CIE 1931 D50 standard illuminant.")
(defclass cielch-color (color-object)
((L*
:initarg :L*
:initform 0
:type (real 0)
:documentation "Lightness, default zero.")
(C*
:initarg :C*
:initform 0
:type (real 0)
:documentation "Chroma, default zero.")
(h
:initarg :h
:initform 0
:type (real 0 (360))
:documentation "Hue, default zero.")
(white-point
:initarg :white-point
:initform *cielch-default-white-point*
:type color-object
:documentation "White point, default ‘*cielch-default-white-point*’."))
(:documentation "Color class for the CIE L*C*h color space.
Hue is measured in degree angle."))
(defmethod color-coordinates ((color cielch-color))
(with-slots (L* C* h) color
(values L* C* h)))
(defmethod white-point ((color cielch-color))
(slot-value color 'white-point))
(defun make-cielch-color (L* C* h &optional (white-point *cielch-default-white-point*))
"Create a new color in the CIE L*C*h color space."
(make-instance 'cielch-color :L* L* :C* C* :h (mod h 360) :white-point white-point))
(defun cielch-from-cielab (L* a* b*)
"Convert CIE L*a*b* color space coordinates
into CIE L*C*h color space coordinates."
(declare (type real L* a* b*))
;; Attempt to be exact, see also ‘cielab-from-cielch’ below.
(cond ((zerop b*)
(values L* (abs a*) (if (minusp a*) 180 0)))
((zerop a*)
(values L* (abs b*) (if (minusp b*) 270 90)))
(t
(let ((C*h (complex (float a* pi) (float b* pi))))
(values L* (abs C*h) (mod (degree-from-radian (phase C*h)) 360))))))
(defun cielab-from-cielch (L* C* h)
"Convert CIE L*C*h color space coordinates
into CIE L*a*b* color space coordinates."
(declare (type real L* C* h))
;; On IEEE 754 machines, and maybe others, values of sin(π) and
;; cos(π/2) are usually non-zero.
(cond ((zerop C*)
(values L* 0 0))
((= h 0)
(values L* C* 0))
((= h 90)
(values L* 0 C*))
((= h 180)
(values L* (- C*) 0))
((= h 270)
(values L* 0 (- C*)))
(t
(let ((C*h (* C* (cis (radian-from-degree (float h pi))))))
(values L* (realpart C*h) (imagpart C*h))))))
(defgeneric cielch-color-coordinates (color)
(:documentation "Return the CIE L*C*h color space coordinates of the color.
Argument COLOR is a color object.")
(:method ((color cielch-color))
(color-coordinates color))
;; Otherwise, go via CIE L*a*b*.
(:method ((color color-object))
(multiple-value-bind (L* a* b*)
(cielab-color-coordinates color)
(cielch-from-cielab L* a* b*))))
(defmethod cielab-color-coordinates ((color cielch-color))
(multiple-value-bind (L* C* h)
(cielch-color-coordinates color)
(cielab-from-cielch L* C* h)))
(defmethod ciexyz-color-coordinates ((color cielch-color))
(multiple-value-bind (L* a* b*)
(cielab-color-coordinates color)
(ciexyz-from-cielab L* a* b* (white-point color))))
(defmethod update-instance-for-different-class :after ((old color-object) (new cielch-color) &key)
(with-slots (L* C* h white-point) new
(multiple-value-setq (L* C* h)
(cielch-color-coordinates old))
(setf white-point (or (white-point old) *cielch-default-white-point*))))
;;; cielch.lisp ends here