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 variables u'
, v'
, u'ₙ
, v'ₙ
, and Yₙ
. I understand that these are related to the white point (of which a table of common values can be found here,) but I'm not exactly sure what the relationship is.
In the article, it says:
For example, for the 2° observer and standard illuminant C,
u'ₙ = 0.2009
,v'ₙ = 0.4610
(The values for the 2° observer and standard illuminant C can be found in the table mentioned above, and are given as x₂ = 0.31006
and y₂ = 0.31616
.)
Below this, the equations for computing u'
and v'
are given:
u' = (4x)/(-2x + 12y + 3)
v' = (9y)/(-2x + 12y + 3)
If we plug in the x₂
and y₂
we've been given, we get the expected result of u' = 0.2009
and v' = 0.4610
. However, earlier in the article, it said that u'ₙ
and v'ₙ
should be those respected values. Not u'
and v'
.
Also, the article makes no mention of Yₙ
other than stating that it's the luminance of the (u', v')
chromaticity coordinates, information on which I can't find.
So, my question is, what the heck are u'
, v'
, u'ₙ
, v'ₙ
, and Yₙ
? Assuming that u'
and v'
are the target chromaticity and u'ₙ
and v'ₙ
are the source chromaticity (or vice-versa,) then the main conversion algorithm would make no sense if the target and source are the same, as the resulting u*
and v*
would equal 0
. If someone could shed a little light on this for me, it'd be greatly appreciated. Thanks.