From 1ba087211f5a52b16b6453a846ceed0e32c7e3a6 Mon Sep 17 00:00:00 2001 From: Zijun Zhou Date: Mon, 23 Oct 2023 10:45:21 +0200 Subject: [PATCH 1/2] Fix False Color console error This commit changes False Color LUT's interpolation method from "tetrahedral" to "linear". Since it's a 1D LUT, "tetrahedral" would cause error in console. --- release/datafiles/colormanagement/config.ocio | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/datafiles/colormanagement/config.ocio b/release/datafiles/colormanagement/config.ocio index 608a971aa62..dc042e68a32 100644 --- a/release/datafiles/colormanagement/config.ocio +++ b/release/datafiles/colormanagement/config.ocio @@ -456,7 +456,7 @@ colorspaces: - ! {src: Rec.2020, dst: Linear Rec.2020} - ! {matrix: [0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0, 0, 0, 1]} - ! {value: 2.5, direction: inverse} - - ! {src: AgX_False_Color.spi1d, interpolation: tetrahedral} + - ! {src: AgX_False_Color.spi1d, interpolation: linear} - ! name: AgX False Color P3 -- 2.30.2 From 697feabe4668fa85eaa1842e991868b02c411033 Mon Sep 17 00:00:00 2001 From: Zijun Zhou Date: Mon, 23 Oct 2023 10:48:50 +0200 Subject: [PATCH 2/2] Fix False Color Mistakenly Using Filmic Looks This was a mistake to use False Color with Filmic Looks. This commit fixes it by copying AgX looks and rename them to false color. --- release/datafiles/colormanagement/config.ocio | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) diff --git a/release/datafiles/colormanagement/config.ocio b/release/datafiles/colormanagement/config.ocio index dc042e68a32..d12f87c61c7 100644 --- a/release/datafiles/colormanagement/config.ocio +++ b/release/datafiles/colormanagement/config.ocio @@ -635,6 +635,109 @@ looks: name: AgX - Very Low Contrast process_space: AgX Log description: A Very Low Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [0.7, 0.7, 0.7], master: 1} + saturation: 1.15 + pivot: {contrast: -0.2} + + - ! + name: False Color - Punchy + process_space: AgX Log + description: A darkening punchy look + transform: ! + children: + - ! + shadows: {rgb: [0.2, 0.2, 0.2], master: 0.35, start: 0.4, pivot: 0.1} + - ! {power: [1.0912, 1.0912, 1.0912]} + + - ! + name: False Color - Greyscale + process_space: AgX Log + description: A Black and White Look + transform: ! + children: + - ! {allocation: lg2, vars: [-12.47393, 12.5260688117], direction: inverse} + - ! {matrix: [0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0.2658180370250449, 0.59846986045365, 0.1357121025213052, 0, 0, 0, 0, 1]} + - ! {allocation: lg2, vars: [-12.47393, 12.5260688117]} + + - ! + name: False Color - Very High Contrast + process_space: AgX Log + description: A Very High Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [1.57, 1.57, 1.57], master: 1} + saturation: 0.9 + pivot: {contrast: -0.2} + + - ! + name: False Color - High Contrast + process_space: AgX Log + description: A High Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [1.4, 1.4, 1.4], master: 1} + saturation: 0.95 + pivot: {contrast: -0.2} + + - ! + name: False Color - Medium High Contrast + process_space: AgX Log + description: A Medium High Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [1.2, 1.2, 1.2], master: 1} + saturation: 1 + pivot: {contrast: -0.2} + + - ! + name: False Color - Base Contrast + process_space: AgX Log + description: A Base Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [1, 1, 1], master: 1} + pivot: {contrast: -0.2} + + - ! + name: False Color - Medium Low Contrast + process_space: AgX Log + description: A Medium Low Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [0.9, 0.9, 0.9], master: 1} + saturation: 1.05 + pivot: {contrast: -0.2} + + - ! + name: False Color - Low Contrast + process_space: AgX Log + description: A Low Contrast Look + transform: ! + children: + - ! + style: log + contrast: {rgb: [0.8, 0.8, 0.8], master: 1} + saturation: 1.1 + pivot: {contrast: -0.2} + + - ! + name: False Color - Very Low Contrast + process_space: AgX Log + description: A Very Low Contrast Look transform: ! children: - ! -- 2.30.2