ColorChart colors conversion

   2985   2   2
User Avatar
Member
205 posts
Joined: 1月 2014
オフライン
Hi,

I need to recreate a color chart in Houdini.
I'm using values from this table.
https://xritephoto.com/documents/literature/EN/ColorChecker24_After_Nov2014.zip [xritephoto.com]

And convert the values from that table like this in VEX.
v@colorChartValue_sRGB = ctransform("cspace:Lab", "cspace:rgb",  set(20.64,  0.07, -0.46));
And then convert that color to ACES
v@colorChartValue_ACES = ocio_transform("Utility - Linear - sRGB", "ACES - ACEScg", v@colorChartValue_sRGB);

Does this seem like the correct method or not?

Thanks
Edited by anon_user_09389530 - 2021年4月1日 21:21:38

Attachments:
yQPBUnAEgm.png (1.2 MB)
4JuXWQk2SK.png (1.2 MB)

I contribute to the beauty of this world
https://houdininotes.ivanlarinin.com/ [houdininotes.ivanlarinin.com]
User Avatar
Member
8173 posts
Joined: 9月 2011
オフライン
deviner
Does this seem like the correct method or not?

Perhaps, but I don't think cspace:rgb is sRGB. I think it's most likely NTSC, because of the legacy of Prisms.

The other complication is the rather aggressive tone curve built into the ACES RRTODT which will affect the result. To get the colors looking the same you would need to apply the inverse RRT as well, but this might result in impossibly bright colors.
Edited by jsmack - 2021年4月1日 22:39:53
User Avatar
Member
205 posts
Joined: 1月 2014
オフライン
Ok, I replaced the LAB to sRGB conversion with just the sRGB values from this table [xritephoto.com].

At least I know that I use sRGB now

Thank you
Edited by anon_user_09389530 - 2021年4月2日 00:56:09
I contribute to the beauty of this world
https://houdininotes.ivanlarinin.com/ [houdininotes.ivanlarinin.com]
  • Quick Links