b45cd433805300da61865541b970f25efaddd2b0
[OpenColorIO-Configs.git] / aces_1.0.0 / python / aces_ocio / colorspaces / aces.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Implements support for *ACES* colorspaces conversions and transfer functions.
6 """
7
8 from __future__ import division
9
10 import math
11 import numpy
12 import os
13 import pprint
14 import string
15 import shutil
16
17 import PyOpenColorIO as ocio
18
19 from aces_ocio.generate_lut import (
20     generate_1d_LUT_from_CTL,
21     generate_3d_LUT_from_CTL,
22     write_SPI_1d)
23 from aces_ocio.utilities import (
24     ColorSpace,
25     mat44_from_mat33,
26     sanitize,
27     compact)
28
29
30 __author__ = 'ACES Developers'
31 __copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers'
32 __license__ = ''
33 __maintainer__ = 'ACES Developers'
34 __email__ = 'aces@oscars.org'
35 __status__ = 'Production'
36
37 __all__ = ['ACES_AP1_TO_AP0',
38            'ACES_AP0_TO_XYZ',
39            'create_ACES',
40            'create_ACEScc',
41            'create_ACESproxy',
42            'create_ACEScg',
43            'create_ADX',
44            'create_ACES_LMT',
45            'create_ACES_RRT_plus_ODT',
46            'create_generic_log',
47            'create_LMTs',
48            'create_ODTs',
49            'get_transform_info',
50            'get_ODTs_info',
51            'get_LMTs_info',
52            'create_colorspaces']
53
54 # Matrix converting *ACES AP1* primaries to *ACES AP0*.
55 ACES_AP1_TO_AP0 = [0.6954522414, 0.1406786965, 0.1638690622,
56                    0.0447945634, 0.8596711185, 0.0955343182,
57                    -0.0055258826, 0.0040252103, 1.0015006723]
58
59 # Matrix converting *ACES AP0* primaries to *ACES AP1*.
60 ACES_AP0_TO_AP1 = [1.4514393161, -0.2365107469, -0.2149285693,
61                    -0.0765537734, 1.1762296998, -0.0996759264,
62                    0.0083161484, -0.0060324498, 0.9977163014]
63
64 # Matrix converting *ACES AP0* primaries to *XYZ*.
65 ACES_AP0_TO_XYZ = [0.9525523959, 0.0000000000, 0.0000936786,
66                    0.3439664498, 0.7281660966, -0.0721325464,
67                    0.0000000000, 0.0000000000, 1.0088251844]
68
69 # Matrix converting *ACES AP0* primaries to *XYZ*.
70 ACES_XYZ_TO_AP0 = [1.0498110175, 0.0000000000, -0.0000974845,
71                    -0.4959030231, 1.3733130458, 0.0982400361,
72                    0.0000000000, 0.0000000000, 0.9912520182]
73
74
75 def create_ACES():
76     """
77     Object description.
78
79     Parameters
80     ----------
81     parameter : type
82         Parameter description.
83
84     Returns
85     -------
86     type
87          Return value description.
88     """
89
90     # Defining the reference colorspace.
91     aces2065_1 = ColorSpace('ACES2065-1')
92     aces2065_1.description = (
93         'The Academy Color Encoding System reference color space')
94     aces2065_1.equality_group = ''
95     aces2065_1.aliases = ["lin_ap0", "aces"]
96     aces2065_1.family = 'ACES'
97     aces2065_1.is_data = False
98     aces2065_1.allocation_type = ocio.Constants.ALLOCATION_LG2
99     aces2065_1.allocation_vars = [-8, 5, 0.00390625]
100
101     return aces2065_1
102
103
104 def create_ACEScc(aces_ctl_directory,
105                   lut_directory,
106                   lut_resolution_1d,
107                   cleanup,
108                   name='ACEScc',
109                   min_value=0,
110                   max_value=1,
111                   input_scale=1):
112     """
113     Creates the *ACEScc* colorspace.
114
115     Parameters
116     ----------
117     parameter : type
118         Parameter description.
119
120     Returns
121     -------
122     Colorspace
123          *ACEScc* colorspace.
124     """
125
126     cs = ColorSpace(name)
127     cs.description = 'The %s color space' % name
128     cs.aliases = ["acescc", "acescc_ap1"]
129     cs.equality_group = ''
130     cs.family = 'ACES'
131     cs.is_data = False
132     cs.allocation_type = ocio.Constants.ALLOCATION_UNIFORM
133     cs.allocation_vars = [min_value, max_value]
134     cs.aces_transform_id = "ACEScsc.ACEScc_to_ACES.a1.0.0"
135
136     ctls = [os.path.join(aces_ctl_directory,
137                          'ACEScc',
138                          'ACEScsc.ACEScc_to_ACES.a1.0.0.ctl'),
139             # This transform gets back to the *AP1* primaries.
140             # Useful as the 1d LUT is only covering the transfer function.
141             # The primaries switch is covered by the matrix below:
142             os.path.join(aces_ctl_directory,
143                          'ACEScg',
144                          'ACEScsc.ACES_to_ACEScg.a1.0.0.ctl')]
145     lut = '%s_to_linear.spi1d' % name
146
147     lut = sanitize(lut)
148
149     generate_1d_LUT_from_CTL(
150         os.path.join(lut_directory, lut),
151         ctls,
152         lut_resolution_1d,
153         'float',
154         input_scale,
155         1,
156         {},
157         cleanup,
158         aces_ctl_directory,
159         min_value,
160         max_value,
161         1)
162
163     cs.to_reference_transforms = []
164     cs.to_reference_transforms.append({
165         'type': 'lutFile',
166         'path': lut,
167         'interpolation': 'linear',
168         'direction': 'forward'})
169
170     # *AP1* primaries to *AP0* primaries.
171     cs.to_reference_transforms.append({
172         'type': 'matrix',
173         'matrix': mat44_from_mat33(ACES_AP1_TO_AP0),
174         'direction': 'forward'})
175
176     cs.from_reference_transforms = []
177     return cs
178
179
180 def create_ACESproxy(aces_ctl_directory,
181                      lut_directory,
182                      lut_resolution_1d,
183                      cleanup,
184                      name='ACESproxy'):
185     """
186     Creates the *ACESproxy* colorspace.
187
188     Parameters
189     ----------
190     parameter : type
191         Parameter description.
192
193     Returns
194     -------
195     Colorspace
196          *ACESproxy* colorspace.
197     """
198
199     cs = ColorSpace(name)
200     cs.description = 'The %s color space' % name
201     cs.aliases = ["acesproxy", "acesproxy_ap1"]
202     cs.equality_group = ''
203     cs.family = 'ACES'
204     cs.is_data = False
205
206     cs.aces_transform_id = "ACEScsc.ACESproxy10i_to_ACES.a1.0.0"
207
208     ctls = [os.path.join(aces_ctl_directory,
209                          'ACESproxy',
210                          'ACEScsc.ACESproxy10i_to_ACES.a1.0.0.ctl'),
211             # This transform gets back to the *AP1* primaries.
212             # Useful as the 1d LUT is only covering the transfer function.
213             # The primaries switch is covered by the matrix below:
214             os.path.join(aces_ctl_directory,
215                          'ACEScg',
216                          'ACEScsc.ACES_to_ACEScg.a1.0.0.ctl')]
217     lut = '%s_to_linear.spi1d' % name
218
219     lut = sanitize(lut)
220
221     generate_1d_LUT_from_CTL(
222         os.path.join(lut_directory, lut),
223         ctls,
224         lut_resolution_1d,
225         'float',
226         1,
227         1,
228         {},
229         cleanup,
230         aces_ctl_directory,
231         0,
232         1,
233         1)
234
235     cs.to_reference_transforms = []
236     cs.to_reference_transforms.append({
237         'type': 'lutFile',
238         'path': lut,
239         'interpolation': 'linear',
240         'direction': 'forward'})
241
242     # *AP1* primaries to *AP0* primaries.
243     cs.to_reference_transforms.append({
244         'type': 'matrix',
245         'matrix': mat44_from_mat33(ACES_AP1_TO_AP0),
246         'direction': 'forward'})
247
248     cs.from_reference_transforms = []
249     return cs
250
251
252 # -------------------------------------------------------------------------
253 # *ACEScg*
254 # -------------------------------------------------------------------------
255 def create_ACEScg(aces_ctl_directory,
256                   lut_directory,
257                   lut_resolution_1d,
258                   cleanup,
259                   name='ACEScg'):
260     """
261     Creates the *ACEScg* colorspace.
262
263     Parameters
264     ----------
265     parameter : type
266         Parameter description.
267
268     Returns
269     -------
270     Colorspace
271          *ACEScg* colorspace.
272     """
273
274     cs = ColorSpace(name)
275     cs.description = 'The %s color space' % name
276     cs.aliases = ["acescg", "lin_ap1"]
277     cs.equality_group = ''
278     cs.family = 'ACES'
279     cs.is_data = False
280     cs.allocation_type = ocio.Constants.ALLOCATION_LG2
281     cs.allocation_vars = [-8, 5, 0.00390625]
282
283     cs.aces_transform_id = "ACEScsc.ACEScg_to_ACES.a1.0.0"
284
285     cs.to_reference_transforms = []
286
287     # *AP1* primaries to *AP0* primaries.
288     cs.to_reference_transforms.append({
289         'type': 'matrix',
290         'matrix': mat44_from_mat33(ACES_AP1_TO_AP0),
291         'direction': 'forward'})
292
293     cs.from_reference_transforms = []
294
295     # *AP1* primaries to *AP0* primaries.
296     cs.from_reference_transforms.append({
297         'type': 'matrix',
298         'matrix': mat44_from_mat33(ACES_AP0_TO_AP1),
299         'direction': 'forward'})
300
301     return cs
302
303
304 # -------------------------------------------------------------------------
305 # *ADX*
306 # -------------------------------------------------------------------------
307 def create_ADX(lut_directory,
308                lut_resolution_1d,
309                bit_depth=10,
310                name='ADX'):
311     """
312     Creates the *ADX* colorspace.
313
314     Parameters
315     ----------
316     parameter : type
317         Parameter description.
318
319     Returns
320     -------
321     Colorspace
322          *ADX* colorspace.
323     """
324
325     name = '%s%s' % (name, bit_depth)
326     cs = ColorSpace(name)
327     cs.description = '%s color space - used for film scans' % name
328     cs.aliases = ["adx%s" % str(bit_depth)]
329     cs.equality_group = ''
330     cs.family = 'ADX'
331     cs.is_data = False
332
333     if bit_depth == 10:
334         cs.aces_transform_id = "ACEScsc.ADX10_to_ACES.a1.0.0"
335
336         cs.bit_depth = ocio.Constants.BIT_DEPTH_UINT10
337         ADX_to_CDD = [1023 / 500, 0, 0, 0,
338                       0, 1023 / 500, 0, 0,
339                       0, 0, 1023 / 500, 0,
340                       0, 0, 0, 1]
341         offset = [-95 / 500, -95 / 500, -95 / 500, 0]
342     elif bit_depth == 16:
343         cs.aces_transform_id = "ACEScsc.ADX16_to_ACES.a1.0.0"
344
345         cs.bit_depth = ocio.Constants.BIT_DEPTH_UINT16
346         ADX_to_CDD = [65535 / 8000, 0, 0, 0,
347                       0, 65535 / 8000, 0, 0,
348                       0, 0, 65535 / 8000, 0,
349                       0, 0, 0, 1]
350         offset = [-1520 / 8000, -1520 / 8000, -1520 / 8000, 0]
351
352     cs.to_reference_transforms = []
353
354     # Converting from *ADX* to *Channel-Dependent Density*.
355     cs.to_reference_transforms.append({
356         'type': 'matrix',
357         'matrix': ADX_to_CDD,
358         'offset': offset,
359         'direction': 'forward'})
360
361     # Convert from Channel-Dependent Density to Channel-Independent Density
362     cs.to_reference_transforms.append({
363         'type': 'matrix',
364         'matrix': [0.75573, 0.22197, 0.02230, 0,
365                    0.05901, 0.96928, -0.02829, 0,
366                    0.16134, 0.07406, 0.76460, 0,
367                    0, 0, 0, 1],
368         'direction': 'forward'})
369
370     # Copied from *Alex Fry*'s *adx_cid_to_rle.py*
371     def create_CID_to_RLE_LUT():
372
373         def interpolate_1D(x, xp, fp):
374             return numpy.interp(x, xp, fp)
375
376         LUT_1D_xp = [-0.190000000000000,
377                      0.010000000000000,
378                      0.028000000000000,
379                      0.054000000000000,
380                      0.095000000000000,
381                      0.145000000000000,
382                      0.220000000000000,
383                      0.300000000000000,
384                      0.400000000000000,
385                      0.500000000000000,
386                      0.600000000000000]
387
388         LUT_1D_fp = [-6.000000000000000,
389                      -2.721718645000000,
390                      -2.521718645000000,
391                      -2.321718645000000,
392                      -2.121718645000000,
393                      -1.921718645000000,
394                      -1.721718645000000,
395                      -1.521718645000000,
396                      -1.321718645000000,
397                      -1.121718645000000,
398                      -0.926545676714876]
399
400         REF_PT = ((7120 - 1520) / 8000 * (100 / 55) -
401                   math.log(0.18, 10))
402
403         def cid_to_rle(x):
404             if x <= 0.6:
405                 return interpolate_1D(x, LUT_1D_xp, LUT_1D_fp)
406             return (100 / 55) * x - REF_PT
407
408         def fit(value, from_min, from_max, to_min, to_max):
409             if from_min == from_max:
410                 raise ValueError('from_min == from_max')
411             return (value - from_min) / (from_max - from_min) * (
412                 to_max - to_min) + to_min
413
414         num_samples = 2 ** 12
415         domain = (-0.19, 3)
416         data = []
417         for i in xrange(num_samples):
418             x = i / (num_samples - 1)
419             x = fit(x, 0, 1, domain[0], domain[1])
420             data.append(cid_to_rle(x))
421
422         lut = 'ADX_CID_to_RLE.spi1d'
423         write_SPI_1d(os.path.join(lut_directory, lut),
424                      domain[0],
425                      domain[1],
426                      data,
427                      num_samples, 1)
428
429         return lut
430
431     # Converting *Channel Independent Density* values to
432     # *Relative Log Exposure* values.
433     lut = create_CID_to_RLE_LUT()
434     cs.to_reference_transforms.append({
435         'type': 'lutFile',
436         'path': lut,
437         'interpolation': 'linear',
438         'direction': 'forward'})
439
440     # Converting *Relative Log Exposure* values to
441     # *Relative Exposure* values.
442     cs.to_reference_transforms.append({
443         'type': 'log',
444         'base': 10,
445         'direction': 'inverse'})
446
447     # Convert *Relative Exposure* values to *ACES* values.
448     cs.to_reference_transforms.append({
449         'type': 'matrix',
450         'matrix': [0.72286, 0.12630, 0.15084, 0,
451                    0.11923, 0.76418, 0.11659, 0,
452                    0.01427, 0.08213, 0.90359, 0,
453                    0, 0, 0, 1],
454         'direction': 'forward'})
455
456     cs.from_reference_transforms = []
457     return cs
458
459
460 # -------------------------------------------------------------------------
461 # *Generic Log Transform*
462 # -------------------------------------------------------------------------
463 def create_generic_log(aces_ctl_directory,
464                        lut_directory,
465                        lut_resolution_1d,
466                        cleanup,
467                        name='log',
468                        aliases=[],
469                        min_value=0,
470                        max_value=1,
471                        input_scale=1,
472                        middle_grey=0.18,
473                        min_exposure=-6,
474                        max_exposure=6.5):
475     """
476     Creates the *Generic Log* colorspace.
477
478     Parameters
479     ----------
480     parameter : type
481         Parameter description.
482
483     Returns
484     -------
485     Colorspace
486          *Generic Log* colorspace.
487     """
488
489     cs = ColorSpace(name)
490     cs.description = 'The %s color space' % name
491     cs.aliases = aliases
492     cs.equality_group = name
493     cs.family = 'Utility'
494     cs.is_data = False
495
496     ctls = [os.path.join(
497         aces_ctl_directory,
498         'utilities',
499         'ACESlib.Log2_to_Lin_param.a1.0.0.ctl')]
500     lut = '%s_to_linear.spi1d' % name
501
502     lut = sanitize(lut)
503
504     generate_1d_LUT_from_CTL(
505         os.path.join(lut_directory, lut),
506         ctls,
507         lut_resolution_1d,
508         'float',
509         input_scale,
510         1,
511         {'middleGrey': middle_grey,
512          'minExposure': min_exposure,
513          'maxExposure': max_exposure},
514         cleanup,
515         aces_ctl_directory,
516         min_value,
517         max_value,
518         1)
519
520     cs.to_reference_transforms = []
521     cs.to_reference_transforms.append({
522         'type': 'lutFile',
523         'path': lut,
524         'interpolation': 'linear',
525         'direction': 'forward'})
526
527     cs.from_reference_transforms = []
528     return cs
529
530
531 # -------------------------------------------------------------------------
532 # *base Dolby PQ Transform*
533 # -------------------------------------------------------------------------
534 def create_dolbypq(aces_CTL_directory,
535                    lut_directory,
536                    lut_resolution_1d,
537                    cleanup,
538                    name='pq',
539                    aliases=[],
540                    min_value=0.0,
541                    max_value=1.0,
542                    input_scale=1.0):
543     cs = ColorSpace(name)
544     cs.description = 'The %s color space' % name
545     cs.aliases = aliases
546     cs.equality_group = name
547     cs.family = 'Utility'
548     cs.is_data = False
549
550     ctls = [os.path.join(
551         aces_CTL_directory,
552         'utilities',
553         'ACESlib.DolbyPQ_to_Lin.a1.0.0.ctl')]
554     lut = '%s_to_linear.spi1d' % name
555
556     lut = sanitize(lut)
557
558     generate_1d_LUT_from_CTL(
559         os.path.join(lut_directory, lut),
560         ctls,
561         lut_resolution_1d,
562         'float',
563         input_scale,
564         1.0,
565         {},
566         cleanup,
567         aces_CTL_directory,
568         min_value,
569         max_value)
570
571     cs.to_reference_transforms = []
572     cs.to_reference_transforms.append({
573         'type': 'lutFile',
574         'path': lut,
575         'interpolation': 'linear',
576         'direction': 'forward'})
577
578     cs.from_reference_transforms = []
579     return cs
580
581
582 # -------------------------------------------------------------------------
583 # *Dolby PQ Transform that considers a fixed linear range*
584 # -------------------------------------------------------------------------
585 def create_dolbypq_scaled(aces_CTL_directory,
586                           lut_directory,
587                           lut_resolution_1d,
588                           cleanup,
589                           name='pq',
590                           aliases=[],
591                           min_value=0.0,
592                           max_value=1.0,
593                           input_scale=1.0,
594                           middle_grey=0.18,
595                           min_exposure=-6.0,
596                           max_exposure=6.5):
597     cs = ColorSpace(name)
598     cs.description = 'The %s color space' % name
599     cs.aliases = aliases
600     cs.equality_group = name
601     cs.family = 'Utility'
602     cs.is_data = False
603
604     ctls = [os.path.join(
605         aces_CTL_directory,
606         'utilities',
607         'ACESlib.DolbyPQ_to_lin_param.a1.0.0.ctl')]
608     lut = '%s_to_linear.spi1d' % name
609
610     lut = sanitize(lut)
611
612     generate_1d_LUT_from_CTL(
613         os.path.join(lut_directory, lut),
614         ctls,
615         lut_resolution_1d,
616         'float',
617         input_scale,
618         1.0,
619         {'middleGrey': middle_grey,
620          'minExposure': min_exposure,
621          'maxExposure': max_exposure},
622         cleanup,
623         aces_CTL_directory,
624         min_value,
625         max_value)
626
627     cs.to_reference_transforms = []
628     cs.to_reference_transforms.append({
629         'type': 'lutFile',
630         'path': lut,
631         'interpolation': 'linear',
632         'direction': 'forward'})
633
634     cs.from_reference_transforms = []
635     return cs
636
637
638 # -------------------------------------------------------------------------
639 # *Individual LMT*
640 # -------------------------------------------------------------------------
641 def create_ACES_LMT(lmt_name,
642                     lmt_values,
643                     shaper_info,
644                     aces_ctl_directory,
645                     lut_directory,
646                     lut_resolution_1d=1024,
647                     lut_resolution_3d=64,
648                     cleanup=True,
649                     aliases=None):
650     """
651     Creates the *ACES LMT* colorspace.
652
653     Parameters
654     ----------
655     parameter : type
656         Parameter description.
657
658     Returns
659     -------
660     Colorspace
661          *ACES LMT* colorspace.
662     """
663
664     if aliases is None:
665         aliases = []
666
667     cs = ColorSpace('%s' % lmt_name)
668     cs.description = 'The ACES Look Transform: %s' % lmt_name
669     cs.aliases = aliases
670     cs.equality_group = ''
671     cs.family = 'Look'
672     cs.is_data = False
673     cs.allocation_type = ocio.Constants.ALLOCATION_LG2
674     cs.allocation_vars = [-8, 5, 0.00390625]
675     cs.aces_transform_id = lmt_values['transformID']
676
677     pprint.pprint(lmt_values)
678
679     # Generating the *shaper* transform.
680     (shaper_name,
681      shaper_to_ACES_CTL,
682      shaper_from_ACES_CTL,
683      shaper_input_scale,
684      shaper_params) = shaper_info
685
686     # Add the shaper transform
687     shaper_lut = '%s_to_linear.spi1d' % shaper_name
688     shaper_lut = sanitize(shaper_lut)
689
690     shaper_OCIO_transform = {
691         'type': 'lutFile',
692         'path': shaper_lut,
693         'interpolation': 'linear',
694         'direction': 'inverse'}
695
696     # Generating the forward transform.
697     cs.from_reference_transforms = []
698
699     if 'transformCTL' in lmt_values:
700         ctls = [shaper_to_ACES_CTL % aces_ctl_directory,
701                 os.path.join(aces_ctl_directory,
702                              lmt_values['transformCTL'])]
703         lut = '%s.%s.spi3d' % (shaper_name, lmt_name)
704
705         lut = sanitize(lut)
706
707         generate_3d_LUT_from_CTL(
708             os.path.join(lut_directory, lut),
709             ctls,
710             lut_resolution_3d,
711             'float',
712             1 / shaper_input_scale,
713             1,
714             shaper_params,
715             cleanup,
716             aces_ctl_directory)
717
718         cs.from_reference_transforms.append(shaper_OCIO_transform)
719         cs.from_reference_transforms.append({
720             'type': 'lutFile',
721             'path': lut,
722             'interpolation': 'tetrahedral',
723             'direction': 'forward'})
724
725     # Generating the inverse transform.
726     cs.to_reference_transforms = []
727
728     if 'transformCTLInverse' in lmt_values:
729         ctls = [os.path.join(aces_ctl_directory,
730                              lmt_values['transformCTLInverse']),
731                 shaper_from_ACES_CTL % aces_ctl_directory]
732         lut = 'Inverse.%s.%s.spi3d' % (odt_name, shaper_name)
733
734         lut = sanitize(lut)
735
736         generate_3d_LUT_from_CTL(
737             os.path.join(lut_directory, lut),
738             ctls,
739             lut_resolution_3d,
740             'half',
741             1,
742             shaper_input_scale,
743             shaper_params,
744             cleanup,
745             aces_ctl_directory,
746             0,
747             1,
748             1)
749
750         cs.to_reference_transforms.append({
751             'type': 'lutFile',
752             'path': lut,
753             'interpolation': 'tetrahedral',
754             'direction': 'forward'})
755
756         shaper_inverse = shaper_OCIO_transform.copy()
757         shaper_inverse['direction'] = 'forward'
758         cs.to_reference_transforms.append(shaper_inverse)
759
760     return cs
761
762
763 # -------------------------------------------------------------------------
764 # *LMTs*
765 # -------------------------------------------------------------------------
766 def create_LMTs(aces_ctl_directory,
767                 lut_directory,
768                 lut_resolution_1d,
769                 lut_resolution_3d,
770                 lmt_info,
771                 shaper_name,
772                 cleanup):
773     """
774     Object description.
775
776     Parameters
777     ----------
778     parameter : type
779         Parameter description.
780
781     Returns
782     -------
783     type
784          Return value description.
785     """
786
787     colorspaces = []
788
789     # -------------------------------------------------------------------------
790     # *LMT Shaper*
791     # -------------------------------------------------------------------------
792     lmt_lut_resolution_1d = max(4096, lut_resolution_1d)
793     lmt_lut_resolution_3d = max(65, lut_resolution_3d)
794
795     # Defining the *Log 2* shaper.
796     lmt_shaper_name = 'LMT Shaper'
797     lmt_shaper_name_aliases = ['crv_lmtshaper']
798     lmt_params = {
799         'middleGrey': 0.18,
800         'minExposure': -10,
801         'maxExposure': 6.5}
802
803     lmt_shaper = create_generic_log(aces_ctl_directory,
804                                     lut_directory,
805                                     lmt_lut_resolution_1d,
806                                     cleanup,
807                                     name=lmt_shaper_name,
808                                     middle_grey=lmt_params['middleGrey'],
809                                     min_exposure=lmt_params['minExposure'],
810                                     max_exposure=lmt_params['maxExposure'],
811                                     aliases=lmt_shaper_name_aliases)
812     colorspaces.append(lmt_shaper)
813
814     shaper_input_scale_generic_log2 = 1
815
816     # *Log 2* shaper name and *CTL* transforms bundled up.
817     lmt_shaper_data = [
818         lmt_shaper_name,
819         os.path.join('%s',
820                      'utilities',
821                      'ACESlib.Log2_to_Lin_param.a1.0.0.ctl'),
822         os.path.join('%s',
823                      'utilities',
824                      'ACESlib.Lin_to_Log2_param.a1.0.0.ctl'),
825         shaper_input_scale_generic_log2,
826         lmt_params]
827
828     sorted_LMTs = sorted(lmt_info.iteritems(), key=lambda x: x[1])
829     print(sorted_LMTs)
830     for lmt in sorted_LMTs:
831         lmt_name, lmt_values = lmt
832         lmt_aliases = ["look_%s" % compact(lmt_values['transformUserName'])]
833         cs = create_ACES_LMT(
834             lmt_values['transformUserName'],
835             lmt_values,
836             lmt_shaper_data,
837             aces_ctl_directory,
838             lut_directory,
839             lmt_lut_resolution_1d,
840             lmt_lut_resolution_3d,
841             cleanup,
842             lmt_aliases)
843         colorspaces.append(cs)
844
845     return colorspaces
846
847
848 # -------------------------------------------------------------------------
849 # *ACES RRT* with supplied *ODT*.
850 # -------------------------------------------------------------------------
851 def create_ACES_RRT_plus_ODT(odt_name,
852                              odt_values,
853                              shaper_info,
854                              aces_ctl_directory,
855                              lut_directory,
856                              lut_resolution_1d=1024,
857                              lut_resolution_3d=64,
858                              cleanup=True,
859                              aliases=None):
860     """
861     Object description.
862
863     Parameters
864     ----------
865     parameter : type
866         Parameter description.
867
868     Returns
869     -------
870     type
871          Return value description.
872     """
873
874     if aliases is None:
875         aliases = []
876
877     cs = ColorSpace('%s' % odt_name)
878     cs.description = '%s - %s Output Transform' % (
879         odt_values['transformUserNamePrefix'], odt_name)
880     cs.aliases = aliases
881     cs.equality_group = ''
882     cs.family = 'Output'
883     cs.is_data = False
884
885     cs.aces_transform_id = odt_values['transformID']
886
887     pprint.pprint(odt_values)
888
889     # Generating the *shaper* transform.
890     (shaper_name,
891      shaper_to_ACES_CTL,
892      shaper_from_ACES_CTL,
893      shaper_input_scale,
894      shaper_params) = shaper_info
895
896     if 'legalRange' in odt_values:
897         shaper_params['legalRange'] = odt_values['legalRange']
898     else:
899         shaper_params['legalRange'] = 0
900
901     # Add the shaper transform
902     shaper_lut = '%s_to_linear.spi1d' % shaper_name
903     shaper_lut = sanitize(shaper_lut)
904
905     shaper_OCIO_transform = {
906         'type': 'lutFile',
907         'path': shaper_lut,
908         'interpolation': 'linear',
909         'direction': 'inverse'}
910
911     # Generating the *forward* transform.
912     cs.from_reference_transforms = []
913
914     if 'transformLUT' in odt_values:
915         transform_LUT_file_name = os.path.basename(
916             odt_values['transformLUT'])
917         lut = os.path.join(lut_directory, transform_LUT_file_name)
918         shutil.copy(odt_values['transformLUT'], lut)
919
920         cs.from_reference_transforms.append(shaper_OCIO_transform)
921         cs.from_reference_transforms.append({
922             'type': 'lutFile',
923             'path': transform_LUT_file_name,
924             'interpolation': 'tetrahedral',
925             'direction': 'forward'})
926     elif 'transformCTL' in odt_values:
927         ctls = [
928             shaper_to_ACES_CTL % aces_ctl_directory,
929             os.path.join(aces_ctl_directory,
930                          'rrt',
931                          'RRT.a1.0.0.ctl'),
932             os.path.join(aces_ctl_directory,
933                          'odt',
934                          odt_values['transformCTL'])]
935         lut = '%s.RRT.a1.0.0.%s.spi3d' % (shaper_name, odt_name)
936
937         lut = sanitize(lut)
938
939         generate_3d_LUT_from_CTL(
940             os.path.join(lut_directory, lut),
941             # shaperLUT,
942             ctls,
943             lut_resolution_3d,
944             'float',
945             1 / shaper_input_scale,
946             1,
947             shaper_params,
948             cleanup,
949             aces_ctl_directory)
950
951         cs.from_reference_transforms.append(shaper_OCIO_transform)
952         cs.from_reference_transforms.append({
953             'type': 'lutFile',
954             'path': lut,
955             'interpolation': 'tetrahedral',
956             'direction': 'forward'})
957
958     # Generating the *inverse* transform.
959     cs.to_reference_transforms = []
960
961     if 'transformLUTInverse' in odt_values:
962         transform_LUT_inverse_file_name = os.path.basename(
963             odt_values['transformLUTInverse'])
964         lut = os.path.join(lut_directory, transform_LUT_inverse_file_name)
965         shutil.copy(odt_values['transformLUTInverse'], lut)
966
967         cs.to_reference_transforms.append({
968             'type': 'lutFile',
969             'path': transform_LUT_inverse_file_name,
970             'interpolation': 'tetrahedral',
971             'direction': 'forward'})
972
973         shaper_inverse = shaper_OCIO_transform.copy()
974         shaper_inverse['direction'] = 'forward'
975         cs.to_reference_transforms.append(shaper_inverse)
976     elif 'transformCTLInverse' in odt_values:
977         ctls = [os.path.join(aces_ctl_directory,
978                              'odt',
979                              odt_values['transformCTLInverse']),
980                 os.path.join(aces_ctl_directory,
981                              'rrt',
982                              'InvRRT.a1.0.0.ctl'),
983                 shaper_from_ACES_CTL % aces_ctl_directory]
984         lut = 'InvRRT.a1.0.0.%s.%s.spi3d' % (odt_name, shaper_name)
985
986         lut = sanitize(lut)
987
988         generate_3d_LUT_from_CTL(
989             os.path.join(lut_directory, lut),
990             # None,
991             ctls,
992             lut_resolution_3d,
993             'half',
994             1,
995             shaper_input_scale,
996             shaper_params,
997             cleanup,
998             aces_ctl_directory)
999
1000         cs.to_reference_transforms.append({
1001             'type': 'lutFile',
1002             'path': lut,
1003             'interpolation': 'tetrahedral',
1004             'direction': 'forward'})
1005
1006         shaper_inverse = shaper_OCIO_transform.copy()
1007         shaper_inverse['direction'] = 'forward'
1008         cs.to_reference_transforms.append(shaper_inverse)
1009
1010     return cs
1011
1012
1013 # -------------------------------------------------------------------------
1014 # *ODTs*
1015 # -------------------------------------------------------------------------
1016 def create_ODTs(aces_ctl_directory,
1017                 lut_directory,
1018                 lut_resolution_1d,
1019                 lut_resolution_3d,
1020                 odt_info,
1021                 shaper_name,
1022                 cleanup,
1023                 linear_display_space,
1024                 log_display_space):
1025     """
1026     Object description.
1027
1028     Parameters
1029     ----------
1030     parameter : type
1031         Parameter description.
1032
1033     Returns
1034     -------
1035     type
1036          Return value description.
1037     """
1038
1039     colorspaces = []
1040     displays = {}
1041
1042     # -------------------------------------------------------------------------
1043     # *RRT / ODT* Shaper Options
1044     # -------------------------------------------------------------------------
1045     shaper_data = {}
1046
1047     # Defining the *Log 2* shaper.
1048     log2_shaper_name = shaper_name
1049     log2_shaper_name_aliases = ["crv_%s" % compact(log2_shaper_name)]
1050     log2_params = {
1051         'middleGrey': 0.18,
1052         'minExposure': -6,
1053         'maxExposure': 6.5}
1054
1055     log2_shaper_colorspace = create_generic_log(
1056         aces_ctl_directory,
1057         lut_directory,
1058         lut_resolution_1d,
1059         cleanup,
1060         name=log2_shaper_name,
1061         middle_grey=log2_params['middleGrey'],
1062         min_exposure=log2_params['minExposure'],
1063         max_exposure=log2_params['maxExposure'],
1064         aliases=log2_shaper_name_aliases)
1065     colorspaces.append(log2_shaper_colorspace)
1066
1067     shaper_input_scale_generic_log2 = 1
1068
1069     # *Log 2* shaper name and *CTL* transforms bundled up.
1070     log2_shaper_data = [
1071         log2_shaper_name,
1072         os.path.join('%s',
1073                      'utilities',
1074                      'ACESlib.Log2_to_Lin_param.a1.0.0.ctl'),
1075         os.path.join('%s',
1076                      'utilities',
1077                      'ACESlib.Lin_to_Log2_param.a1.0.0.ctl'),
1078         shaper_input_scale_generic_log2,
1079         log2_params]
1080
1081     shaper_data[log2_shaper_name] = log2_shaper_data
1082
1083     # Space with a more user-friendly name. Direct copy otherwise.
1084     log2_shaper_copy_name = "Log2 Shaper"
1085     log2_shaper_copy_colorspace = ColorSpace(log2_shaper_copy_name)
1086     log2_shaper_copy_colorspace.description = 'The %s color space' % log2_shaper_copy_name
1087     log2_shaper_copy_colorspace.aliases = ["crv_%s" % compact(log2_shaper_copy_name)]
1088     log2_shaper_copy_colorspace.equality_group = log2_shaper_copy_name
1089     log2_shaper_copy_colorspace.family = log2_shaper_colorspace.family
1090     log2_shaper_copy_colorspace.is_data = log2_shaper_colorspace.is_data
1091     log2_shaper_copy_colorspace.to_reference_transforms = list(
1092         log2_shaper_colorspace.to_reference_transforms)
1093     log2_shaper_copy_colorspace.from_reference_transforms = list(
1094         log2_shaper_colorspace.from_reference_transforms)
1095     colorspaces.append(log2_shaper_copy_colorspace)
1096
1097     # Defining the *Log2 shaper that includes the AP1* primaries.
1098     log2_shaper_api1_name = "%s - AP1" % "Log2 Shaper"
1099     log2_shaper_api1_colorspace = ColorSpace(log2_shaper_api1_name)
1100     log2_shaper_api1_colorspace.description = 'The %s color space' % log2_shaper_api1_name
1101     log2_shaper_api1_colorspace.aliases = [
1102         "%s_ap1" % compact(log2_shaper_copy_name)]
1103     log2_shaper_api1_colorspace.equality_group = log2_shaper_api1_name
1104     log2_shaper_api1_colorspace.family = log2_shaper_colorspace.family
1105     log2_shaper_api1_colorspace.is_data = log2_shaper_colorspace.is_data
1106     log2_shaper_api1_colorspace.to_reference_transforms = list(
1107         log2_shaper_colorspace.to_reference_transforms)
1108     log2_shaper_api1_colorspace.from_reference_transforms = list(
1109         log2_shaper_colorspace.from_reference_transforms)
1110
1111     # *AP1* primaries to *AP0* primaries.
1112     log2_shaper_api1_colorspace.to_reference_transforms.append({
1113         'type': 'matrix',
1114         'matrix': mat44_from_mat33(ACES_AP1_TO_AP0),
1115         'direction': 'forward'
1116     })
1117     colorspaces.append(log2_shaper_api1_colorspace)
1118
1119     # Defining the *Log2 shaper that includes the AP1* primaries.
1120     # Named with 'shaper_name' variable. Needed for some LUT baking steps.
1121     shaper_api1_name = "%s - AP1" % shaper_name
1122     shaper_api1_colorspace = ColorSpace(shaper_api1_name)
1123     shaper_api1_colorspace.description = 'The %s color space' % shaper_api1_name
1124     shaper_api1_colorspace.aliases = ["%s_ap1" % compact(shaper_name)]
1125     shaper_api1_colorspace.equality_group = shaper_api1_name
1126     shaper_api1_colorspace.family = log2_shaper_colorspace.family
1127     shaper_api1_colorspace.is_data = log2_shaper_colorspace.is_data
1128     shaper_api1_colorspace.to_reference_transforms = list(
1129         log2_shaper_api1_colorspace.to_reference_transforms)
1130     shaper_api1_colorspace.from_reference_transforms = list(
1131         log2_shaper_api1_colorspace.from_reference_transforms)
1132     colorspaces.append(shaper_api1_colorspace)
1133
1134     # Define the base *Dolby PQ Shaper*
1135     #
1136     dolbypq_shaper_name = "Dolby PQ 10000"
1137     dolbypq_shaper_name_aliases = ["crv_%s" % "dolbypq_10000"]
1138
1139     dolbypq_shaper_colorspace = create_dolbypq(
1140         aces_ctl_directory,
1141         lut_directory,
1142         lut_resolution_1d,
1143         cleanup,
1144         name=dolbypq_shaper_name,
1145         aliases=dolbypq_shaper_name_aliases)
1146     colorspaces.append(dolbypq_shaper_colorspace)
1147
1148     # *Dolby PQ* shaper name and *CTL* transforms bundled up.
1149     dolbypq_shaper_data = [
1150         dolbypq_shaper_name,
1151         os.path.join('%s',
1152                      'utilities',
1153                      'ACESlib.DolbyPQ_to_Lin.a1.0.0.ctl'),
1154         os.path.join('%s',
1155                      'utilities',
1156                      'ACESlib.Lin_to_DolbyPQ.a1.0.0.ctl'),
1157         1.0,
1158         {}]
1159
1160     shaper_data[dolbypq_shaper_name] = dolbypq_shaper_data
1161
1162     # Define the *Dolby PQ Shaper that considers a fixed linear range*
1163     #
1164     dolbypq_scaled_shaper_name = "Dolby PQ Scaled"
1165     dolbypq_scaled_shaper_name_aliases = ["crv_%s" % "dolbypq_scaled"]
1166
1167     dolbypq_scaled_shaper_colorspace = create_dolbypq_scaled(
1168         aces_ctl_directory,
1169         lut_directory,
1170         lut_resolution_1d,
1171         cleanup,
1172         name=dolbypq_scaled_shaper_name,
1173         aliases=dolbypq_scaled_shaper_name_aliases)
1174     colorspaces.append(dolbypq_scaled_shaper_colorspace)
1175
1176     # *Dolby PQ* shaper name and *CTL* transforms bundled up.
1177     dolbypq_scaled_shaper_data = [
1178         dolbypq_scaled_shaper_name,
1179         os.path.join('%s',
1180                      'utilities',
1181                      'ACESlib.DolbyPQ_to_Lin_param.a1.0.0.ctl'),
1182         os.path.join('%s',
1183                      'utilities',
1184                      'ACESlib.Lin_to_DolbyPQ_param.a1.0.0.ctl'),
1185         1.0,
1186         log2_params]
1187
1188     shaper_data[dolbypq_scaled_shaper_name] = dolbypq_scaled_shaper_data
1189
1190     #
1191     # Pick a specific shaper
1192     #
1193     rrt_shaper = log2_shaper_data
1194     # rrt_shaper = dolbypq_scaled_shaper_data
1195
1196     # *RRT + ODT* combinations.
1197     sorted_odts = sorted(odt_info.iteritems(), key=lambda x: x[1])
1198     print(sorted_odts)
1199     for odt in sorted_odts:
1200         (odt_name, odt_values) = odt
1201
1202         # Generating only full range transform for *ODTs* that can generate 
1203         # either *legal* or *full* output.
1204
1205         # Uncomment these lines and the lower section and flip the 'legalRange' value to 1
1206         # to recover the old behavior, where both legal and full range LUTs were generated
1207         if odt_values['transformHasFullLegalSwitch']:
1208             #odt_name_legal = '%s - Legal' % odt_values['transformUserName']
1209             odt_legal['legalRange'] = 0
1210         #else:
1211         #    odt_name_legal = odt_values['transformUserName']
1212  
1213         odt_name_legal = odt_values['transformUserName']
1214
1215         odt_legal = odt_values.copy()
1216
1217         odt_aliases = ["out_%s" % compact(odt_name_legal)]
1218
1219         cs = create_ACES_RRT_plus_ODT(
1220             odt_name_legal,
1221             odt_legal,
1222             rrt_shaper,
1223             aces_ctl_directory,
1224             lut_directory,
1225             lut_resolution_1d,
1226             lut_resolution_3d,
1227             cleanup,
1228             odt_aliases)
1229         colorspaces.append(cs)
1230
1231         displays[odt_name_legal] = {
1232             'Raw': linear_display_space,
1233             'Log': log_display_space,
1234             'Output Transform': cs}
1235
1236         '''
1237         # Generating full range transform for *ODTs* that can generate 
1238         # either *legal* or *full* output.
1239         if odt_values['transformHasFullLegalSwitch']:
1240             print('Generating full range ODT for %s' % odt_name)
1241
1242             odt_name_full = '%s - Full' % odt_values['transformUserName']
1243             odt_full = odt_values.copy()
1244             odt_full['legalRange'] = 0
1245
1246             odt_full_aliases = ["out_%s" % compact(odt_name_full)]
1247
1248             cs_full = create_ACES_RRT_plus_ODT(
1249                 odt_name_full,
1250                 odt_full,
1251                 rrt_shaper,
1252                 aces_ctl_directory,
1253                 lut_directory,
1254                 lut_resolution_1d,
1255                 lut_resolution_3d,
1256                 cleanup,
1257                 odt_full_aliases)
1258             colorspaces.append(cs_full)
1259
1260             displays[odt_name_full] = {
1261                 'Raw': linear_display_space,
1262                 'Log': log_display_space,
1263                 'Output Transform': cs_full}
1264         '''
1265
1266     return (colorspaces, displays)
1267
1268
1269 def get_transform_info(ctl_transform):
1270     """
1271     Object description.
1272
1273     Parameters
1274     ----------
1275     parameter : type
1276         Parameter description.
1277
1278     Returns
1279     -------
1280     type
1281          Return value description.
1282     """
1283
1284     with open(ctl_transform, 'rb') as fp:
1285         lines = fp.readlines()
1286
1287     # Retrieving the *transform ID* and *User Name*.
1288     transform_id = lines[1][3:].split('<')[1].split('>')[1].strip()
1289     transform_user_name = '-'.join(
1290         lines[2][3:].split('<')[1].split('>')[1].split('-')[1:]).strip()
1291     transform_user_name_prefix = (
1292         lines[2][3:].split('<')[1].split('>')[1].split('-')[0].strip())
1293
1294     # Figuring out if this transform has options for processing full and legal range
1295     transform_full_legal_switch = False
1296     for line in lines:
1297         if line.strip() == "input varying int legalRange = 0":
1298             # print( "%s has legal range flag" % transform_user_name)
1299             transform_full_legal_switch = True
1300             break
1301
1302     return (transform_id, transform_user_name, transform_user_name_prefix,
1303             transform_full_legal_switch)
1304
1305
1306 def get_ODTs_info(aces_ctl_directory):
1307     """
1308     Object description.
1309
1310     For versions after WGR9.
1311
1312     Parameters
1313     ----------
1314     parameter : type
1315         Parameter description.
1316
1317     Returns
1318     -------
1319     type
1320          Return value description.
1321     """
1322
1323     # TODO: Investigate usage of *files_walker* definition here.
1324     # Credit to *Alex Fry* for the original approach here.
1325     odt_dir = os.path.join(aces_ctl_directory, 'odt')
1326     all_odt = []
1327     for dir_name, subdir_list, file_list in os.walk(odt_dir):
1328         for fname in file_list:
1329             all_odt.append((os.path.join(dir_name, fname)))
1330
1331     odt_CTLs = [x for x in all_odt if
1332                 ('InvODT' not in x) and (os.path.split(x)[-1][0] != '.')]
1333
1334     odts = {}
1335
1336     for odt_CTL in odt_CTLs:
1337         odt_tokens = os.path.split(odt_CTL)
1338
1339         # Handling nested directories.
1340         odt_path_tokens = os.path.split(odt_tokens[-2])
1341         odt_dir = odt_path_tokens[-1]
1342         while odt_path_tokens[-2][-3:] != 'odt':
1343             odt_path_tokens = os.path.split(odt_path_tokens[-2])
1344             odt_dir = os.path.join(odt_path_tokens[-1], odt_dir)
1345
1346         # Building full name,
1347         transform_CTL = odt_tokens[-1]
1348         odt_name = string.join(transform_CTL.split('.')[1:-1], '.')
1349
1350         # Finding id, user name and user name prefix.
1351         (transform_ID,
1352          transform_user_name,
1353          transform_user_name_prefix,
1354          transform_full_legal_switch) = get_transform_info(
1355             os.path.join(aces_ctl_directory, 'odt', odt_dir, transform_CTL))
1356
1357         # Finding inverse.
1358         transform_CTL_inverse = 'InvODT.%s.ctl' % odt_name
1359         if not os.path.exists(
1360                 os.path.join(odt_tokens[-2], transform_CTL_inverse)):
1361             transform_CTL_inverse = None
1362
1363         # Add to list of ODTs
1364         odts[odt_name] = {}
1365         odts[odt_name]['transformCTL'] = os.path.join(odt_dir, transform_CTL)
1366         if transform_CTL_inverse is not None:
1367             odts[odt_name]['transformCTLInverse'] = os.path.join(
1368                 odt_dir, transform_CTL_inverse)
1369
1370         odts[odt_name]['transformID'] = transform_ID
1371         odts[odt_name]['transformUserNamePrefix'] = transform_user_name_prefix
1372         odts[odt_name]['transformUserName'] = transform_user_name
1373         odts[odt_name][
1374             'transformHasFullLegalSwitch'] = transform_full_legal_switch
1375
1376         forward_CTL = odts[odt_name]['transformCTL']
1377
1378         print('ODT : %s' % odt_name)
1379         print('\tTransform ID               : %s' % transform_ID)
1380         print('\tTransform User Name Prefix : %s' % transform_user_name_prefix)
1381         print('\tTransform User Name        : %s' % transform_user_name)
1382         print(
1383             '\tHas Full / Legal Switch    : %s' % transform_full_legal_switch)
1384         print('\tForward ctl                : %s' % forward_CTL)
1385         if 'transformCTLInverse' in odts[odt_name]:
1386             inverse_CTL = odts[odt_name]['transformCTLInverse']
1387             print('\tInverse ctl                : %s' % inverse_CTL)
1388         else:
1389             print('\tInverse ctl                : %s' % 'None')
1390
1391     print('\n')
1392
1393     return odts
1394
1395
1396 def get_LMTs_info(aces_ctl_directory):
1397     """
1398     Object description.
1399
1400     For versions after WGR9.
1401
1402     Parameters
1403     ----------
1404     parameter : type
1405         Parameter description.
1406
1407     Returns
1408     -------
1409     type
1410          Return value description.
1411     """
1412
1413     # TODO: Investigate refactoring with previous definition.
1414
1415     # Credit to Alex Fry for the original approach here
1416     lmt_dir = os.path.join(aces_ctl_directory, 'lmt')
1417     all_lmt = []
1418     for dir_name, subdir_list, file_list in os.walk(lmt_dir):
1419         for fname in file_list:
1420             all_lmt.append((os.path.join(dir_name, fname)))
1421
1422     lmt_CTLs = [x for x in all_lmt if
1423                 ('InvLMT' not in x) and ('README' not in x) and (
1424                     os.path.split(x)[-1][0] != '.')]
1425
1426     lmts = {}
1427
1428     for lmt_CTL in lmt_CTLs:
1429         lmt_tokens = os.path.split(lmt_CTL)
1430
1431         # Handlimg nested directories.
1432         lmt_path_tokens = os.path.split(lmt_tokens[-2])
1433         lmt_dir = lmt_path_tokens[-1]
1434         while lmt_path_tokens[-2][-3:] != 'ctl':
1435             lmt_path_tokens = os.path.split(lmt_path_tokens[-2])
1436             lmt_dir = os.path.join(lmt_path_tokens[-1], lmt_dir)
1437
1438         # Building full name.
1439         transform_CTL = lmt_tokens[-1]
1440         lmt_name = string.join(transform_CTL.split('.')[1:-1], '.')
1441
1442         # Finding id, user name and user name prefix.
1443         (transform_ID,
1444          transform_user_name,
1445          transform_user_name_prefix,
1446          transform_full_legal_switch) = get_transform_info(
1447             os.path.join(aces_ctl_directory, lmt_dir, transform_CTL))
1448
1449         # Finding inverse.
1450         transform_CTL_inverse = 'InvLMT.%s.ctl' % lmt_name
1451         if not os.path.exists(
1452                 os.path.join(lmt_tokens[-2], transform_CTL_inverse)):
1453             transform_CTL_inverse = None
1454
1455         lmts[lmt_name] = {}
1456         lmts[lmt_name]['transformCTL'] = os.path.join(lmt_dir, transform_CTL)
1457         if transform_CTL_inverse is not None:
1458             lmts[lmt_name]['transformCTLInverse'] = os.path.join(
1459                 lmt_dir, transform_CTL_inverse)
1460
1461         lmts[lmt_name]['transformID'] = transform_ID
1462         lmts[lmt_name]['transformUserNamePrefix'] = transform_user_name_prefix
1463         lmts[lmt_name]['transformUserName'] = transform_user_name
1464
1465         forward_CTL = lmts[lmt_name]['transformCTL']
1466
1467         print('LMT : %s' % lmt_name)
1468         print('\tTransform ID               : %s' % transform_ID)
1469         print('\tTransform User Name Prefix : %s' % transform_user_name_prefix)
1470         print('\tTransform User Name        : %s' % transform_user_name)
1471         print('\t Forward ctl               : %s' % forward_CTL)
1472         if 'transformCTLInverse' in lmts[lmt_name]:
1473             inverse_CTL = lmts[lmt_name]['transformCTLInverse']
1474             print('\t Inverse ctl                : %s' % inverse_CTL)
1475         else:
1476             print('\t Inverse ctl                : %s' % 'None')
1477
1478     print('\n')
1479
1480     return lmts
1481
1482
1483 def create_colorspaces(aces_ctl_directory,
1484                        lut_directory,
1485                        lut_resolution_1d,
1486                        lut_resolution_3d,
1487                        lmt_info,
1488                        odt_info,
1489                        shaper_name,
1490                        cleanup):
1491     """
1492     Generates the colorspace conversions.
1493
1494     Parameters
1495     ----------
1496     parameter : type
1497         Parameter description.
1498
1499     Returns
1500     -------
1501     type
1502          Return value description.
1503     """
1504
1505     colorspaces = []
1506
1507     ACES = create_ACES()
1508
1509     ACEScc = create_ACEScc(aces_ctl_directory, lut_directory,
1510                            lut_resolution_1d, cleanup,
1511                            min_value=-0.35840, max_value=1.468)
1512     colorspaces.append(ACEScc)
1513
1514     ACESproxy = create_ACESproxy(aces_ctl_directory, lut_directory,
1515                                  lut_resolution_1d, cleanup)
1516     colorspaces.append(ACESproxy)
1517
1518     ACEScg = create_ACEScg(aces_ctl_directory, lut_directory,
1519                            lut_resolution_1d, cleanup)
1520     colorspaces.append(ACEScg)
1521
1522     ADX10 = create_ADX(lut_directory, lut_resolution_1d, bit_depth=10)
1523     colorspaces.append(ADX10)
1524
1525     ADX16 = create_ADX(lut_directory, lut_resolution_1d, bit_depth=16)
1526     colorspaces.append(ADX16)
1527
1528     lmts = create_LMTs(aces_ctl_directory,
1529                        lut_directory,
1530                        lut_resolution_1d,
1531                        lut_resolution_3d,
1532                        lmt_info,
1533                        shaper_name,
1534                        cleanup)
1535     colorspaces.extend(lmts)
1536
1537     odts, displays = create_ODTs(aces_ctl_directory,
1538                                  lut_directory,
1539                                  lut_resolution_1d,
1540                                  lut_resolution_3d,
1541                                  odt_info,
1542                                  shaper_name,
1543                                  cleanup,
1544                                  ACES,
1545                                  ACEScc)
1546     colorspaces.extend(odts)
1547
1548     # Wish there was an automatic way to get this from the CTL
1549     defaultDisplay = "sRGB (D60 sim.)"
1550
1551     roles = {'color_picking': ACEScg.name,
1552              'color_timing': ACEScc.name,
1553              'compositing_log': ACEScc.name,
1554              'data': '',
1555              'default': ACES.name,
1556              'matte_paint': ACEScc.name,
1557              'reference': '',
1558              'scene_linear': ACEScg.name,
1559              'texture_paint': ''}
1560
1561     return ACES, colorspaces, displays, ACEScc, roles, defaultDisplay