Learn R Programming

munsellinterpol (version 3.0-0)

Munsell2xy: The Munsell HVC to xy 3D Lookup Table

Description

This is the discrete data for the Munsell Renotation System, which is often considered to be the most perceptually uniform color atlas. It was created by the NBS and OSA from "3,000,000 color judgments" by 40 observers.

Arguments

Format

A data frame with 4995 observations of the following 6 variables.

  • H the Munsell Hue. Each H is a multiple of 2.5 and in the interval (0,100].

  • V the Munsell Value. Each V is an integer from 1 to 10, or one of 0.2, 0.4, 0.6, 0.8

  • C the Munsell Chroma. Each C is a positive even integer.

  • x the x chromaticity coordinate, for Illuminant C.

  • y the y chromaticity coordinate, for Illuminant C.

  • real a logical value. If TRUE then x,y were published, otherwise they have been extrapolated.

Note that the luminance factor Y is *not* here, since Y is a simple function of V, see YfromV().

Details

All the (x,y) data here comes from the file all.dat downloaded from Rochester Institute of Technology, see Source. The file real.dat is a subset, and contains the (x,y) published in Newhall, et. al. (1943). These rows have real=TRUE and are only for Value \(\ge\) 1. There are 2734 of these.

Similarly, for Value<1 (very dark colors), (x,y) data from the paper Judd et. al. (1956) also have real=TRUE. There are 355 of these.

So all.dat has 4995 colors, of which 2734+355=3089 are "real" colors, and the remaining 1906 are extrapolated. I am confident that the extrapolation was done by Schleter et. al. (1958) at the NBS, and put online by the Rochester Institute of Technology. For more details, and the abstract of the 1958 article, see the munsellinterpol User Guide.

References

Newhall, Sidney M., Dorothy Nickerson, Deane B. Judd. Final Report of the O.S.A. Subcommitte on the Spacing of the Munsell Colors. Journal of the Optical Society of America. Vol. 33. No. 7. pp. 385-418. July 1943.

Judd, Deane B. and Gunter Wyszecki. Extension of the Munsell Renotation System to Very Dark Colors. Journal of the Optical Society of America. Vol. 46. No. 4. pp. 281-284. April 1956.

Schleter, J. C, D. B. Judd, D. B., H. J. Keegan. Extension of the Munsell Renotation System (Abstract). J. Opt. Soc. Am. Vol 48. Num. 11. pp. 863-864. presented at the Forty-Third Annual Meeting of the Optical Society of America. Statler Hilton Hotel, Detroit, Michigan. October 9, 10, and 11, 1958.

See Also

YfromV()

Examples

Run this code
# NOT RUN {
str(Munsell2xy)

##  'data.frame':	4995 obs. of  6 variables:
##   $ H   : num  32.5 35 37.5 37.5 40 40 42.5 42.5 45 45 ...
##   $ V   : num  0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 ...
##   $ C   : num  2 2 2 4 2 4 2 4 2 4 ...
##   $ x   : num  0.713 0.449 0.262 -0.078 0.185 -0.257 0.144 -0.235 0.117 -0.209 ...
##   $ y   : num  1.414 1.145 0.837 2.16 0.676 ...
##   $ real: logi  FALSE FALSE FALSE FALSE TRUE FALSE ...
# }

Run the code above in your browser using DataLab