Questions tagged [cieluv]

CIELUV, is a color space adopted by the International Commission on Illumination (CIE) in 1976, as a simple-to-compute transformation of the 1931 CIE XYZ color space, but which attempted perceptual uniformity.

In colorimetry, the CIE 1976 (L*, u*, v*) color space, commonly known by its abbreviation CIELUV, is a color space adopted by the International Commission on Illumination (CIE) in 1976, as a simple-to-compute transformation of the 1931 CIE XYZ color space, but which attempted perceptual uniformity.

It is extensively used for applications such as computer graphics which deal with colored lights. Although additive mixtures of different colored lights will fall on a line in CIELUV's uniform chromaticity diagram (dubbed the CIE 1976 UCS), such additive mixtures will not, contrary to popular belief, fall along a line in the CIELUV color space unless the mixtures are constant in lightness.

8 questions
4
votes
1 answer

In the CIEXYZ to CIELUV conversion, what are `u'`, `v'`, `u'ₙ`, `v'ₙ`, and `Yₙ`?

I've recently been looking into color spaces and color models. I've become interested in the relationships and conversions between different spaces, and I came across CIEXYZ and CIELUV. In the conversion algorithm, the CIELUV article mentions the…
Steven
  • 1,709
  • 3
  • 17
  • 27
2
votes
1 answer

How to convert RGB image to CIELUV color space?

How I can convert RGB image to CIELUV color space? Does there any library exists solve this problem?
bvl
  • 161
  • 2
  • 12
2
votes
2 answers

Determine that a Luv Color is non-imaginary

Suppose I have a triple of coordinates in the Luv color space. What is the best way to determine that these correspond to a real color?
junius
  • 570
  • 3
  • 14
2
votes
2 answers

What is the CieLuv value of Black?

The Wikipedia page about CieL*u*v* color space describes the conversion function from a color expressed in the XYZ color space. For black, expressed as (R=0, G=0, B=0) in the RGB color space, and (X=0, Y=0, Z=0) in the XYZ color space, which…
wip
  • 2,313
  • 5
  • 31
  • 47
0
votes
2 answers

Uniform random sampling of CIELUV for RGB colors

Selecting a random color on a computer is a touch harder than I thought it would be. The naive way of uniform random sampling of 0..255 for R,G,B will tend to draw lots of similar greens. It would make sense to sample from a perceptually uniform…
0
votes
1 answer

during conversion of XYZ to linear sRGB answer is out of range [0,1]

My task was to convert the RGB image into LuvImage. Perform linear stretching in this domain. And than convert it back in the RGB domain. Original Image: [[ 0 0 0] [255 0 0] [100 100 100] [ 0 100 100]] Luv image after linear stretching…
0
votes
1 answer

How are CIE xyY Luminance Values for Color Primaries Determined?

In the sRGB color space, the luminance values for the red, green, and blue primaries are specified as 0.21216, 0.7152, and 0.0722, respectively. The white point is defined to have luminance 1. In other words, the sRGB values <1,0,0>, <0,1,0>,…
MooseBoys
  • 6,641
  • 1
  • 19
  • 43
0
votes
1 answer

How can I determine the colorspace (RGB) profile of my data?

I have a standard jpeg image, which I use within some commercial software to colorize other data (by mapping the image's color onto the data). Then I export the colored data from this software to an XYRGB ascii file, i.e. I store the data…
Michael
  • 280
  • 2
  • 13