Liam Collod

Results 23 issues of Liam Collod

Hello, The suggestion is as follow : **offering a way in config to specify the colorspace in charge of defining the conversion between the reference and the sRGB "display" colorspace.**...

Needs Discussion

Hello, Executing the following snippet : ```python import PyOpenColorIO as ocio # ! REPLACE CONFIG_PATH ! config = ocio.Config().CreateFromFile(CONFIG_PATH) gp = ocio.GradingPrimary(ocio.GRADING_LIN) gp.clampBlack = 0.5 trsfm = ocio.GradingPrimaryTransform( gp, ocio.GRADING_LIN,...

To Close

Hello, same as in #1641, seems 2 similar `ocio.GradingPrimary` instance doesn't assert equal. ```python import unittest import PyOpenColorIO as ocio class OcioGradingPrimary(unittest.TestCase): def test_equal1(self): gp1 = ocio.GradingPrimary(ocio.GRADING_LIN) gp1.saturation = 0.3...

Needs Discussion

Hello, yes me again, I'm sorry but seems this poor GradingPrimary class didn't get as much love as it should have. This time I'm simply modifying the `contrast` attribute but...

Hello, When looking at the `GradingPrimary` class, I have a hard time understanding why do we need to specify the _GradingStyle_ in the `__init__` of the class ? I do...

Needs Discussion

Hello, When using `ocio.GradingRGBM()`, creating two instances with similar values will result in two instances that can not be matched equally like `instance1==instance2`. This can bee seen in the following...

Hello, I have noticed that when using a `GradingPrimary` instance with only the saturation modified, when ported to a `GradingPrimaryTransform` and then applied to an image, the saturation change is...

Hello, When looking at the GradingPrimary class documentation (https://opencolorio.readthedocs.io/en/latest/api/grading_transforms.html), we can see a bunch of property is available but none of them specifies which type of value is expected when...

Documentation
good first issue
Help Wanted

**Context** : PyOpenColorIO==2.1.0 Hello, When having a look at the `Colorspace` class I noticed that we can set the `referenceSpace` in instance's `init` but then, there is no method that...

# Dict2GafferThree Add a way to specify in the dict's `params` key a way to specify the value is a python expression for the parameter.

enhancement