This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version 1 | |
From 0.0 10.0 | |
Length 4096 | |
Components 1 | |
{ | |
0.0000000000 | |
0.0000191362 | |
0.0001060989 | |
0.0002921250 | |
0.0005740942 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- !<ColorSpace> | |
name: Reconstructed Filmic | |
family: log | |
equalitygroup: | |
bitdepth: 32f | |
description: | | |
Use to reconstruct generic imagery to work with Filmic | |
isdata: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def open_domain_to_normalized_log2( | |
in_od, | |
in_middle_grey=0.18, | |
minimum_ev=-6.0, | |
maximum_ev=+7.0 | |
): | |
total_exposure = maximum_ev - minimum_ev | |
in_od = numpy.asarray(in_od) | |
in_od[in_od <= 0.0] = numpy.finfo(numpy.float).eps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import numpy | |
import math | |
# Return value as scalar or array. Shamelessly borrowed from | |
# Colour-science.org. | |
def as_numeric(obj, as_type=numpy.float64): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import OpenImageIO | |
import pyglet | |
import glooey | |
if __name__ == "__main__": | |
window = pyglet.window.Window() | |
batch = pyglet.graphics.Batch() | |
ui = pyglet.graphics.OrderedGroup(100) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import PyOpenColorIO | |
import numpy | |
import colour | |
from colour import ( | |
io, | |
adaptation, | |
models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- !<ColorSpace> | |
name: Filmic Log Encoding - Base Contrast | |
family: | |
equalitygroup: | |
bitdepth: 32f | |
description: | | |
Log based filmic shaper with 16.5 stops of latitude, and 25 stops of dynamic range. | |
isdata: false | |
allocation: lg2 | |
allocationvars: [-12.473931188, 12.526068812] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- !<ColorSpace> | |
name: Alexa Filmic Log | |
family: log | |
equalitygroup: | |
bitdepth: 32f | |
description: | | |
Log based filmic shaper with 16.5 stops of latitude, and 25 stops of dynamic range | |
isdata: false | |
allocation: lg2 | |
allocationvars: [-12.473931188, 12.526068812] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/source/blender/alembic/intern/abc_object.cc b/source/blender/alembic/intern/abc_object.cc | |
index c8716d5..d0ed642 100644 | |
--- a/source/blender/alembic/intern/abc_object.cc | |
+++ b/source/blender/alembic/intern/abc_object.cc | |
@@ -286,7 +286,7 @@ void AbcObjectReader::read_matrix(float r_mat[4][4], const float time, | |
has_alembic_parent = false; | |
} | |
else { | |
- has_alembic_parent = ixform_parent && schema.getInheritsXforms(); | |
+ //has_alembic_parent = ixform_parent && schema.getInheritsXforms(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/source/blender/alembic/intern/abc_object.cc b/source/blender/alembic/intern/abc_object.cc | |
index c8716d5..d0ed642 100644 | |
--- a/source/blender/alembic/intern/abc_object.cc | |
+++ b/source/blender/alembic/intern/abc_object.cc | |
@@ -286,7 +286,7 @@ void AbcObjectReader::read_matrix(float r_mat[4][4], const float time, | |
has_alembic_parent = false; | |
} | |
else { | |
- has_alembic_parent = ixform_parent && schema.getInheritsXforms(); | |
+ //has_alembic_parent = ixform_parent && schema.getInheritsXforms(); |
NewerOlder