|
Python apply .cube ?
Please help!
I am trying to load in a file, resize it, apply a .cube LUT then write it out.
I have the following so far, but I'm falling over between the oiio > ocio parts (one using an oiio.ImgBuf
Please help!
I am trying to load in a file, resize it, apply a .cube LUT then write it out.
I have the following so far, but I'm falling over between the oiio > ocio parts (one using an oiio.ImgBuf
|
By
tre...@...
·
#1416
·
|
|
Pull request for custom transforms
Hello,
I decided to implement the custom transform idea I posted earlier and send a pull request: https://github.com/imageworks/OpenColorIO/pull/390
The implementation is quite short and simple, it
Hello,
I decided to implement the custom transform idea I posted earlier and send a pull request: https://github.com/imageworks/OpenColorIO/pull/390
The implementation is quite short and simple, it
|
By
Lukas Stockner <lukas.s...@...>
·
#1415
·
|
|
Re: Precision of float values in config generated from Python
You need to print and later parse 8 digits to uniquely capture a float.
For those craving more information: https://randomascii.wordpress.com/2012/03/08/float-precisionfrom-zero-to-100-digits-2/
///d@
You need to print and later parse 8 digits to uniquely capture a float.
For those craving more information: https://randomascii.wordpress.com/2012/03/08/float-precisionfrom-zero-to-100-digits-2/
///d@
|
By
Dithermaster <dither...@...>
·
#1414
·
|
|
Re: Precision of float values in config generated from Python
Thanks for digging into this, and my apologies for missing the obvious limit of float precision. I was running into an issues where the limited precision is combined with high-intensity values to
Thanks for digging into this, and my apologies for missing the obvious limit of float precision. I was running into an issues where the limited precision is combined with high-intensity values to
|
By
Haarm-Pieter Duiker <li...@...>
·
#1413
·
|
|
Re: Precision of float values in config generated from Python
There is also a bug in yaml-cpp which prevents this in
src/emitterstate.cpp it needs fixing to read:
bool EmitterState::SetFloatPrecision(int value, FMT_SCOPE scope)
{
if(value < 0 ||
There is also a bug in yaml-cpp which prevents this in
src/emitterstate.cpp it needs fixing to read:
bool EmitterState::SetFloatPrecision(int value, FMT_SCOPE scope)
{
if(value < 0 ||
|
By
Kevin Wheatley <kevin.j....@...>
·
#1412
·
|
|
Re: Precision of float values in config generated from Python
There are cases in the code where the precision of the formatting is
used to generate Cache Ids, changing the precision here would change
the behavior there are also cases with luts where certain
There are cases in the code where the precision of the formatting is
used to generate Cache Ids, changing the precision here would change
the behavior there are also cases with luts where certain
|
By
Kevin Wheatley <kevin.j....@...>
·
#1411
·
|
|
Re: Precision of float values in config generated from Python
<kevin.j....@...> wrote:
looking through the code the matrix is stored as single precision
float and the bindings to python also assume as such, the image
processing also works as float, storing
<kevin.j....@...> wrote:
looking through the code the matrix is stored as single precision
float and the bindings to python also assume as such, the image
processing also works as float, storing
|
By
Kevin Wheatley <kevin.j....@...>
·
#1410
·
|
|
Re: Precision of float values in config generated from Python
sounds like limits of float precision to me. that would mean being
'double' clean through the code,
Kevin
sounds like limits of float precision to me. that would mean being
'double' clean through the code,
Kevin
|
By
Kevin Wheatley <kevin.j....@...>
·
#1409
·
|
|
Precision of float values in config generated from Python
Hello,
Is there a way to configure the precision used for floating-point values stored in a config?
I have a Python script that generates a config based on a bunch of inputs, including a number of
Hello,
Is there a way to configure the precision used for floating-point values stored in a config?
I have a Python script that generates a config based on a bunch of inputs, including a number of
|
By
Haarm-Pieter Duiker <li...@...>
·
#1407
·
|
|
Re: ACES 1.0 released
Hi Steve,
These all seem like fair points. I'll take a look at this tomorrow and update the config.
The questions around the linear range covered by ACEScc may need a bit more investigation.
HP
Hi Steve,
These all seem like fair points. I'll take a look at this tomorrow and update the config.
The questions around the linear range covered by ACEScc may need a bit more investigation.
HP
|
By
Haarm-Pieter Duiker <li...@...>
·
#1406
·
|
|
Re: ACES 1.0 released
Hi HP,
I'm looking into rolling an internal project's OCIO configuration forward to use as much of your ACES 1.0 config as possible. I've run into a couple of issues and wanted to run them by
Hi HP,
I'm looking into rolling an internal project's OCIO configuration forward to use as much of your ACES 1.0 config as possible. I've run into a couple of issues and wanted to run them by
|
By
Steve Agland <sag...@...>
·
#1408
·
|
|
Implementing a CustomTransform
Hi,
I recently found that it would be quite useful to have a CustomTransform that allows to add own Transforms without changing the actual OCIO code.
My idea for this would be to have a
Hi,
I recently found that it would be quite useful to have a CustomTransform that allows to add own Transforms without changing the actual OCIO code.
My idea for this would be to have a
|
By
Lukas Stockner <lukas.s...@...>
·
#1405
·
|
|
Re: ACES 1.0 released
Congrats to everyone who worked on this. It is a huge achievement and you have made a great improvement to the industry.
I can't wait to play with all of it, and test it on the first project that
Congrats to everyone who worked on this. It is a huge achievement and you have made a great improvement to the industry.
I can't wait to play with all of it, and test it on the first project that
|
By
Francois Lord <franco...@...>
·
#1404
·
|
|
ACES 1.0 released
Hello,
The ACES 1.0 Developer Release is officially available! Full product information can be found on the revamped website, http://www.oscars.org/aces. To give you a preview, the ACES 1.0 release
Hello,
The ACES 1.0 Developer Release is officially available! Full product information can be found on the revamped website, http://www.oscars.org/aces. To give you a preview, the ACES 1.0 release
|
By
Haarm-Pieter Duiker <li...@...>
·
#1403
·
|
|
Re: Academy CTF LUT Format Support
Certainly. Here's CBS Digital's fork of OCIO:
https://github.com/CBSDigital/OpenColorIO/tree/master
You can see my latest commits. The bulk of the code is in FileFormatCTF.cpp.
Certainly. Here's CBS Digital's fork of OCIO:
https://github.com/CBSDigital/OpenColorIO/tree/master
You can see my latest commits. The bulk of the code is in FileFormatCTF.cpp.
|
By
Ben Doherty <benjdo...@...>
·
#1401
·
|
|
Re: Academy CTF LUT Format Support
Hi Ben,
That sounds great! What you've described sounds like you're heading down the right track. If it's possible, could you post the code to a github account? That way we could better collaborate,
Hi Ben,
That sounds great! What you've described sounds like you're heading down the right track. If it's possible, could you post the code to a github account? That way we could better collaborate,
|
By
Mark Boorer <mark...@...>
·
#1402
·
|
|
Academy CTF LUT Format Support
Hello all,
My name is Ben Doherty, and I'm a developer working for CBS Digital. We’re interested in addiing support in OCIO for The Academy's Color Transform File (CTF) LUTs. This additional
Hello all,
My name is Ben Doherty, and I'm a developer working for CBS Digital. We’re interested in addiing support in OCIO for The Academy's Color Transform File (CTF) LUTs. This additional
|
By
Ben Doherty <benjdo...@...>
·
#1400
·
|
|
Re: ACES OCIO configs, testing and feedback
+1 for the common still camera gamuts. Prophoto, Adobe Wide Gamut, and Adobe RGB. There's a smattering of different whitepoints and gammas with those, which can be annoying to deal with.
+1 for the common still camera gamuts. Prophoto, Adobe Wide Gamut, and Adobe RGB. There's a smattering of different whitepoints and gammas with those, which can be annoying to deal with.
|
By
Andy Jones <andy....@...>
·
#1398
·
|
|
Re: ACES OCIO configs, testing and feedback
I'm a bit late to the party, but for what it's worth, Red log (with their various red color primaries I assume?), Canon log, and GoPro "protune" were popular requests for inclusion in the default Nuke
I'm a bit late to the party, but for what it's worth, Red log (with their various red color primaries I assume?), Canon log, and GoPro "protune" were popular requests for inclusion in the default Nuke
|
By
Matt Plec <mp...@...>
·
#1399
·
|
|
Re: parseColorSpaceFromString() issue
I needed to get git-savvy anyway, so I went ahead and made a pull request for this patch: https://github.com/imageworks/OpenColorIO/pull/381
Cheers,
-Mike
I needed to get git-savvy anyway, so I went ahead and made a pull request for this patch: https://github.com/imageworks/OpenColorIO/pull/381
Cheers,
-Mike
|
By
mi...@...
·
#1397
·
|