Date
1 - 5 of 5
ociobakelut and looks
Ciaran <ciaran...@...>
I have a bunch of look transforms set up that I would like to bake into luts. ociobakelut doesn't seem to know anything about looks currently so is there another way to do this? Or would it be reasonably straightforward for me to add look support to ociobakelut (I haven't really looked at the code yet)?
Jeremy Selan <jeremy...@...>
That's an accidental omission.
"ociobakelut --look" totally makes sense.
It's not super straightforward to add, unfortunately as ociobakelut
currently creates a new temporary color configuration for all of the
--lut style commands, and in this case you'd need to make a copy of
the existing profile. But... the total of lines of code that would
need to change is probably just a handful so if you'd like to take a
stab by all means do so. ociobakelut isnt too scary.
If you're not up for the challenge, I'm happy add this early next week.
https://github.com/imageworks/OpenColorIO/issues/265
-- Jeremy
toggle quoted message
Show quoted text
"ociobakelut --look" totally makes sense.
It's not super straightforward to add, unfortunately as ociobakelut
currently creates a new temporary color configuration for all of the
--lut style commands, and in this case you'd need to make a copy of
the existing profile. But... the total of lines of code that would
need to change is probably just a handful so if you'd like to take a
stab by all means do so. ociobakelut isnt too scary.
If you're not up for the challenge, I'm happy add this early next week.
https://github.com/imageworks/OpenColorIO/issues/265
-- Jeremy
On Wed, Apr 18, 2012 at 2:09 PM, Ciaran <ciaran...@...> wrote:
I have a bunch of look transforms set up that I would like to bake into
luts. ociobakelut doesn't seem to know anything about looks currently so is
there another way to do this? Or would it be reasonably straightforward for
me to add look support to ociobakelut (I haven't really looked at the code
yet)?
DBR - Ben <dbr....@...>
It's not super straightforward to add, unfortunately as ociobakelut
currently creates a new temporary color configuration for all of the
--lut style commands
The --look arg would only make sense with the existing-config options (e.g "--inputspace lg10 --outputspace srgb8 --look di"), so it should be pretty straight forward - just need to make sure the configless path through the code errors correctly
- Ben
Ciaran <ciaran...@...>
On Thursday, April 19, 2012 2:16:16 AM UTC-7, dbr/Ben wrote:
Yup - that's basically what I've done. This code here gets me what I need right now - https://github.com/cjwills/OpenColorIO/commit/06d930b9646590546711cced1828c040cada64aa - I'll finish it up properly later...
The --look arg would only make sense with the existing-config options (e.g "--inputspace lg10 --outputspace srgb8 --look di"), so it should be pretty straight forward - just need to make sure the configless path through the code errors correctly- Ben
Yup - that's basically what I've done. This code here gets me what I need right now - https://github.com/cjwills/OpenColorIO/commit/06d930b9646590546711cced1828c040cada64aa - I'll finish it up properly later...