Martin Weberg wrote:
collink: Error - gamut, comp_ce: unable to locate hue 0.409143 cusps
Hmm. Probably a numerical problem. If you're compiling from source, in gamut/nearsmth.c, about line 953 in function comp_ce(), try changing: if (sh >= h0 && sh < h1) to if (sh >= (h0 - 1e-12) && sh < (h1 + 1e-12)) and see if it helps. Otherwise you'll have to wait for me to test it and do another release... Graeme Gill.