X-Git-Url: http://users.mur.at/ms/git/gitweb/?p=OpenColorIO-Configs.git;a=blobdiff_plain;f=aces_1.0.0%2Fpython%2Faces_ocio%2Fcreate_canon_colorspaces.py;h=5159b160bb0c4d578fcb5b3ed680982101c6b6fb;hp=87e5e3cf3e215f7545bceb4dd4f92299cb8b94a2;hb=f3a69608e9a350bd245e0578c196470b622af28d;hpb=2158c15470d514412974585e84210cbc2c909011 diff --git a/aces_1.0.0/python/aces_ocio/create_canon_colorspaces.py b/aces_1.0.0/python/aces_ocio/create_canon_colorspaces.py index 87e5e3c..5159b16 100644 --- a/aces_1.0.0/python/aces_ocio/create_canon_colorspaces.py +++ b/aces_1.0.0/python/aces_ocio/create_canon_colorspaces.py @@ -6,6 +6,7 @@ Implements support for *Canon* colorspaces conversions and transfer functions. """ import array +import os import aces_ocio.generate_lut as genlut from aces_ocio.utilities import ColorSpace @@ -77,12 +78,13 @@ def create_c_log(gamut, data[c] = c_log_to_linear(1023.0 * c / (lut_resolution_1d - 1)) lut = '%s_to_linear.spi1d' % transfer_function - genlut.write_SPI_1d(lut_directory + '/' + lut, - 0.0, - 1.0, - data, - lut_resolution_1d, - 1) + genlut.write_SPI_1d( + os.path.join(lut_directory, lut), + 0.0, + 1.0, + data, + lut_resolution_1d, + 1) cs.to_reference_transforms.append({ 'type': 'lutFile',