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_sony_colorspaces.py;h=758ad14e773a4e6f531f220cd68f96e37a799afa;hp=7a428acd97cec651afccf13974550825e60c08e7;hb=f3a69608e9a350bd245e0578c196470b622af28d;hpb=2158c15470d514412974585e84210cbc2c909011 diff --git a/aces_1.0.0/python/aces_ocio/create_sony_colorspaces.py b/aces_1.0.0/python/aces_ocio/create_sony_colorspaces.py index 7a428ac..758ad14 100644 --- a/aces_1.0.0/python/aces_ocio/create_sony_colorspaces.py +++ b/aces_1.0.0/python/aces_ocio/create_sony_colorspaces.py @@ -6,6 +6,7 @@ Implements support for *Sony* colorspaces conversions and transfer functions. """ import array +import os import aces_ocio.generate_lut as genlut from aces_ocio.utilities import ColorSpace, mat44_from_mat33 @@ -102,12 +103,13 @@ def create_s_log(gamut, data[c] = s_log1_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) # print('Writing %s' % lut) @@ -123,12 +125,13 @@ def create_s_log(gamut, data[c] = s_log2_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) # print('Writing %s' % lut) @@ -144,12 +147,13 @@ def create_s_log(gamut, data[c] = s_log3_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) # print('Writing %s' % lut)