This is not the case with the very similar LAB colorspace.
For example resizing the earth lights image in LAB produces a good image...
Code: Select all
convert earth_lights_4800.tif -colorspace Lab -resize 500 \
-colorspace sRGB earth_lights_lab.png
BUT doing this in LUV colorspace results in some VERY bright pixels where none should appear. These pixel should be near black, as it is in the previous example.
Code: Select all
convert earth_lights_4800.tif -colorspace Luv -resize 500 \
-colorspace sRGB earth_lights_luv.png
Compare the images and look at the pixels for Falkland islands in south Atlantic, for Nauru in the West Pacific, along the edge of the artic icecap, and two bright pixels in Russia.
Basically while LUV colorspace seems to be working, there is some error at extreme values.