Defines luminance \(Y\) computation objects.
The following methods are available:
See also
Returns the luminance \(R_Y\) of given Munsell value \(V\) using Sidney M. Newhall, Dorothy Nickerson, and Deane B. Judd (1943) method.
Parameters: |
|
---|---|
Returns: | luminance \(R_Y\). |
Return type: | numeric or array_like |
Notes
References
[1] | Newhall, S. M., Nickerson, D., & Judd, D. B. (1943). Final report of the OSA subcommittee on the spacing of the munsell colors. JOSA, 33(7), 385. doi:10.1364/JOSA.33.000385 |
Examples
>>> luminance_Newhall1943(3.74629715382)
10.4089874...
Returns the luminance \(Y\) of given Munsell value \(V\) using ASTM D1535-08e1 (2008) method.
Parameters: |
|
---|---|
Returns: | luminance \(Y\). |
Return type: | numeric or array_like |
Notes
References
[4] | ASTM International. (n.d.). ASTM D1535-08e1 Standard Practice for Specifying Color by the Munsell System. doi:10.1520/D1535-08E01 |
Examples
>>> luminance_ASTMD153508(3.74629715382)
10.1488096...
Returns the luminance \(Y\) of given Lightness \(L^*\) with given reference white luminance \(Y_n\).
Parameters: |
|
---|---|
Returns: | luminance \(Y\). |
Return type: | numeric or array_like |
Notes
References
[2] | Wyszecki, G., & Stiles, W. S. (2000). CIE 1976 (L*u*v*)-Space and Color-Difference Formula. In Color Science: Concepts and Methods, Quantitative Data and Formulae (p. 167). Wiley. ISBN:978-0471399186 |
[3] | Lindbloom, B. (2003). A Continuity Study of the CIE L* Function. Retrieved February 24, 2014, from http://brucelindbloom.com/LContinuity.html |
Examples
>>> luminance_1976(37.9856290977)
array(10.0800000...)
>>> luminance_1976(37.9856290977, 95)
array(9.5760000...)
Supported luminance computations methods.
Aliases:
Returns the luminance \(Y\) of given Lightness \(L^*\) or given Munsell value \(V\).
Parameters: |
|
---|---|
Returns: | luminance \(Y\). |
Return type: | numeric or array_like |
Notes
Examples
>>> luminance(37.9856290977)
array(10.0800000...)
>>> luminance(37.9856290977, Y_n=100)
array(10.0800000...)
>>> luminance(37.9856290977, Y_n=95)
array(9.5760000...)
>>> luminance(3.74629715382, method='Newhall 1943')
10.4089874...
>>> luminance(3.74629715382, method='ASTM D1535-08')
10.1488096...