color convert rgb to hsv

color convert rgb to hsv

2503902676
Explorer Explorer
175 Views
1 Reply
Message 1 of 2

color convert rgb to hsv

2503902676
Explorer
Explorer

2503902676_0-1663432575472.png

2503902676_1-1663432803949.png

Why do I get this result after using this node?

0 Likes
176 Views
1 Reply
Reply (1)
Message 2 of 2

peter_horvath
Autodesk
Autodesk

If you convert (1, 0, 0) from RGB to HSV space, the result is (0, 1, 1). The output of the shader graph is expected in RGB space, so if you display the HSV output, you'll see (0, 1, 1) cyan. Normally if you need to operate in HSV space, first you convert the input to HSV, do your stuff and convert it back to RGB.


// Peter Horvath
// C4DtoA developer
0 Likes