-
Notifications
You must be signed in to change notification settings - Fork 1
/
ZCAMishDRT_v001.nk
21583 lines (21583 loc) · 515 KB
/
ZCAMishDRT_v001.nk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! /Applications/Nuke13.0v3/Nuke13.0v3.app/Contents/MacOS/libnuke-13.0.3.dylib -nx
version 13.0 v3
define_window_layout_xml {<?xml version="1.0" encoding="UTF-8"?>
<layout version="1.0">
<window x="336" y="139" w="2048" h="1150" screen="0">
<splitter orientation="1">
<split size="40"/>
<dock id="" hideTitles="1" activePageId="Toolbar.1">
<page id="Toolbar.1"/>
</dock>
<split size="2345" stretch="1"/>
<splitter orientation="2">
<split size="1143"/>
<dock id="" activePageId="Viewer.1" focus="true">
<page id="Viewer.1"/>
</dock>
<split size="399"/>
<dock id="" activePageId="DAG.1">
<page id="DAG.1"/>
<page id="Curve Editor.1"/>
<page id="DopeSheet.1"/>
<page id="DAG.2"/>
</dock>
</splitter>
<split size="615"/>
<dock id="" activePageId="Properties.1">
<page id="Properties.1"/>
<page id="uk.co.thefoundry.backgroundrenderview.1"/>
</dock>
</splitter>
</window>
</layout>
}
Root {
inputs 0
name /Users/afry/GitHub/nukeZCAM/ZCAMishDRT_v001.nk
mapsize {0.1093260188 0.09103641457}
format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)"
proxy_type scale
proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)"
colorManagement OCIO
customOCIOConfigPath /Users/afry/Documents/GitHub/OpenColorIO-Configs/aces_1.2/config.ocio
defaultViewerLUT "OCIO LUTs"
workingSpaceLUT scene_linear
monitorLut sRGB
monitorOutLUT "rec709 (default)"
int8Lut matte_paint
int16Lut texture_paint
logLut compositing_log
floatLut scene_linear
}
Shuffle2 {
inputs 0
fromInput1 {{0} B}
fromInput2 {{0} B}
name Shuffle1
xpos 1207
ypos 189
}
Reformat {
inputs 0
type "to box"
format "256 256 0 0 256 256 1 square_256"
box_width 256
box_height 256
box_fixed true
name Reformat1
xpos -1424
ypos 314
}
Ramp {
p0 {0 0}
p1 {{width i} 0}
name Ramp2
xpos -1424
ypos 338
}
Grade {
white {1.399999976 0.5600000024 1 1}
gamma {0.6100000143 1.320000052 0.6499999762 1}
name Grade2
xpos -1424
ypos 362
}
Expression {
expr0 "y==floor(r(x, pos.y)*height*mult)?1:0"
expr1 "y==floor(g(x, pos.y)*height*mult)?1:0"
expr2 "y==floor(b(x, pos.y)*height*mult)?1:0"
channel3 alpha
name PlotScanline
xpos -1424
ypos 423
addUserKnob {20 User}
addUserKnob {12 pos}
addUserKnob {7 mult R 0 5}
mult 1
}
Constant {
inputs 0
channels rgb
color 0.18
name Constant2
xpos 62
ypos -684
}
set N4573a400 [stack 0]
EXPTool {
mode Stops
red 1
green 1
blue 1
name Exposure1
xpos -46
ypos -611
}
push $N4573a400
Expression {
temp_name0 stop
temp_expr0 1
channel0 rgba
expr0 r*pow(2,1)
name Expression2
xpos 62
ypos -612
}
Reformat {
inputs 0
format "1024 1024 0 0 1024 1024 1 square_1K"
name Reformat2
xpos 156
ypos -685
}
Expression {
channel0 rgba
expr0 .18*pow(2,(cx*7))
name Expression1
xpos 156
ypos -653
}
Ramp {
p0 {0 0}
p1 {{width} 0}
color 20
name Ramp1
xpos 156
ypos -612
disable true
}
Colorspace {
inputs 0
primary_out DCI-P3
name VIEWER_INPUT
xpos 1528
ypos 324
}
Reformat {
inputs 0
format "1024 1024 0 0 1024 1024 1 square_1K"
name Reformat6
xpos 7534
ypos -412
}
set N45738400 [stack 0]
Crop {
box {0 0 1024 {height/7}}
reformat true
crop false
name Crop1
xpos 7698
ypos -392
}
set N248ec800 [stack 0]
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 white -1 -1 rgba.red 0 0 white -1 -1 rgba.green 0 1 black -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle23
xpos 8331
ypos -347
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 white -1 -1 rgba.red 0 0 black -1 -1 rgba.green 0 1 white -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle22
xpos 8225
ypos -342
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 black -1 -1 rgba.red 0 0 white -1 -1 rgba.green 0 1 white -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle24
xpos 8103
ypos -336
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 black -1 -1 rgba.red 0 0 black -1 -1 rgba.green 0 1 white -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle21
xpos 7984
ypos -338
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 black -1 -1 rgba.red 0 0 white -1 -1 rgba.green 0 1 black -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle20
xpos 7883
ypos -340
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 white -1 -1 rgba.red 0 0 black -1 -1 rgba.green 0 1 black -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle19
xpos 7791
ypos -338
}
push $N248ec800
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 white -1 -1 rgba.red 0 0 white -1 -1 rgba.green 0 1 white -1 -1 rgba.blue 0 2 rgba.alpha 0 3 rgba.alpha 0 3"
name Shuffle18
xpos 7698
ypos -338
}
ContactSheet {
inputs 7
width 1024
height 1024
rows 7
columns 1
name ContactSheet2
xpos 7704
ypos -265
}
push $N45738400
Expression {
channel0 rgba
expr0 .18*pow(2,(cx*7))
name Expression7
xpos 7534
ypos -380
}
Merge2 {
inputs 2
operation multiply
name Multiply
xpos 7534
ypos -262
}
Colorspace {
primary_out ACES
name Colorspace10
xpos 7534
ypos -236
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-r-b.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read28
xpos 7191
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-g.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read27
xpos 7081
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-g-r.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read26
xpos 6971
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-g-b.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read25
xpos 6861
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-b.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read24
xpos 6751
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-b-r.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read23
xpos 6641
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-b-g.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read22
xpos 6531
ypos -418
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-r.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read32
xpos 6411
ypos -415
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/troy-sobotka/ACEScg-notorious-primary-r-g.exr"
format "960 540 0 0 960 540 1 "
origset true
name Read29
xpos 6301
ypos -415
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0022.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read59
xpos 6126
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0021.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read58
xpos 6016
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0020.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read57
xpos 5906
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0019.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read56
xpos 5796
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0018.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read55
xpos 5686
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0017.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read54
xpos 5576
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0016.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read53
xpos 5466
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0015.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read52
xpos 5356
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0014.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read51
xpos 5246
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0013.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read50
xpos 5136
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0012.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read49
xpos 5026
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0011.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read48
xpos 4916
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0010.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read47
xpos 4806
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0009.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read46
xpos 4696
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0008.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read45
xpos 4586
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0007.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read44
xpos 4476
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0006.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read43
xpos 4366
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0005.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read42
xpos 4256
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0004.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read41
xpos 4146
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0003.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read40
xpos 4036
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0002.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read38
xpos 3926
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/daniel-brylka/210203_Prius_EXR_balance_ACESCentral_aces.0001.exr"
format "5496 3670 0 0 5496 3670 1 "
origset true
name Read34
xpos 3816
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/jed-smith/jedsmith_colorchecker24_streaks_flat.aces.exr"
format "1152 576 0 0 1152 576 1 "
origset true
name Read39
xpos 3637
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/jed-smith/acescg_hueswatches_24.aces.exr"
format "2048 768 0 0 2048 768 1 "
origset true
name Read33
xpos 3492
ypos -417
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/jed-smith/jedsmith_colorchecker24_streaks_6ev.aces.exr"
format "1152 576 0 0 1152 576 1 "
origset true
name Read37
xpos 3334
ypos -414
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/jed-smith/jedsmith_2020-08-20-06h43m50_riviere-au-tonnerre_sunrise.2048x1024.aces.exr"
format "2048 1024 0 0 2048 1024 1 2K_LatLong"
origset true
name Read36
xpos 3227
ypos -413
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/jed-smith/jedsmith_2020-01-07-09h24_snowy_sunrise.2048x1024.aces.exr"
format "2048 1024 0 0 2048 1024 1 2K_LatLong"
origset true
name Read35
xpos 3117
ypos -413
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/christophe-brejon/louise_sun_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read31
xpos 2984
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/christophe-brejon/louise_concert_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read30
xpos 2851
ypos -427
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/monsieur-lixm/fx_explosion_lookdev_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read21
xpos 2710
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/monsieur-lixm/dragonscene_ap0_v01_1003.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read20
xpos 2600
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/monsieur-lixm/dragonscene_ap0_v01_1002.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read19
xpos 2490
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/original/monsieur-lixm/dragonscene_ap0_v01_1001.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read18
xpos 2380
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/sunny_spheres_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read17
xpos 2233
ypos -428
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/red_volumetric_002_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read16
xpos 2124
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/red_volumetric_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read15
xpos 2014
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/macbeth_spheres_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read14
xpos 1904
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/light_sabers_003_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read13
xpos 1794
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/light_sabers_002_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read12
xpos 1684
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/light_sabers_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read11
xpos 1574
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/glowing_spheres_002_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read10
xpos 1464
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/glowing_spheres_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read9
xpos 1354
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/cornell_box_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read8
xpos 1244
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/blue_volumetric_002_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read7
xpos 1134
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/blue_volumetric_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read6
xpos 1024
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/christophe-brejon/biped_jelly_001_lin_ap0.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read5
xpos 914
ypos -429
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/aces_2048x1080_graded.00304.exr"
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read4
xpos 801
ypos -430
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/Output Transform Image Submissions/aces-exr-1920/RED_Christmas_ACES_via_RWG.exr"
format "4096 2160 0 0 4096 2160 1 4K_DCP"
origset true
name Read3
xpos 704
ypos -426
}
Read {
inputs 0
file_type exr
file "/Volumes/GoogleDrive/My Drive/images/TheLegoMovie_OT_VWG_zmk17_020_aces.0287.exr"
format "2000 824 0 0 2000 824 1 kragle(Overscan)"
origset true
raw true
name Read1
xpos 608
ypos -426
}
Switch {
inputs 59
which {{frame-1}}
name Switch1
xpos 705
ypos -257
}
Reformat {
format "1920 1080 0 0 1920 1080 1 HD_1080"
resize fit
black_outside true
name Reformat3
xpos 705
ypos -233
}
Dot {
name Dot2
xpos 739
ypos -171
}
set N35772c00 [stack 0]
Colorspace {
primary_in ACES
colorspace_out CIE-XYZ
name Colorspace3
label "ACES to XYZ"
xpos 705
ypos -143
}
Dot {
name Dot4
xpos 739
ypos -88
}
set N35772400 [stack 0]
Multiply {
value 100
name Multiply3
label "Mult by 100 to put in absolute nits"
xpos 705
ypos -70
}
Dot {
name Dot1
xpos 739
ypos -28
}
Group {
name ZCAM
label "\[value direction]\n\[if \{\[value direction] ==\"inverse\"\} \{return \[value inverseData0]\} \{return \"\"\}] - \[if \{\[value direction] ==\"inverse\"\} \{return \[value inverseData1]\} \{return \"\"\}]\n0.0.2"
xpos 705
ypos -1
addUserKnob {20 ZCAM}
addUserKnob {4 direction M {forward inverse}}
addUserKnob {26 ""}
addUserKnob {26 inverseModes l "Inverse Input Data Modes"}
addUserKnob {4 inverseData0 l "Inverse Data 0" M {J Q}}
addUserKnob {4 inverseData1 l "Inverse Data 1" M {aM,bM aC,bC aS,bS M,h C,h}}
addUserKnob {26 ""}
addUserKnob {26 _1 l _SURROUND_PARAMETERS}
addUserKnob {41 surrounds T Constants.surrounds}
addUserKnob {41 c T Constants.c}
addUserKnob {41 Nc T Constants.Nc}
addUserKnob {41 F T Constants.F}
addUserKnob {41 FLL T Constants.FLL}
addUserKnob {26 _2 l _DEFAULT_CONDITIONS}
addUserKnob {41 La T Constants.La}
addUserKnob {41 Yb T Constants.Yb}
addUserKnob {41 surround T Constants.surround}
addUserKnob {41 D T Constants.D}
addUserKnob {41 Dtype T Constants.Dtype}
addUserKnob {26 ""}
addUserKnob {41 xyzw_d65 T Constants.xyzw_d65}
addUserKnob {41 xyzw T Constants.xyzw}
addUserKnob {26 ""}
addUserKnob {41 Yw T Constants.Yw}
addUserKnob {41 FL T Constants.FL}
addUserKnob {41 n T Constants.n}
addUserKnob {41 Fb T Constants.Fb}
addUserKnob {41 Fs T Constants.Fs}
addUserKnob {26 ""}
addUserKnob {41 xyzwc T Constants.xyzwc}
addUserKnob {41 iabzw T Constants.iabzw}
addUserKnob {41 Qw T Constants.Qw}
}
BackdropNode {
inputs 0
name BackdropNode1
tile_color 0x71c67100
label xyz_to_jabz
note_font_size 42
xpos -1063
ypos -50
bdwidth 255
bdheight 678
}
BackdropNode {
inputs 0
name BackdropNode2
tile_color 0x388e8e00
label Forward
note_font_size 42
xpos -1278
ypos 673
bdwidth 1634
bdheight 582
}
BackdropNode {
inputs 0
name BackdropNode3
tile_color 0x388e8e00
label Inverse
note_font_size 42
xpos -2310
ypos 2374
bdwidth 1715
bdheight 953
}
BackdropNode {
inputs 0
name BackdropNode4
tile_color 0x388e8e00
label "jabz to xyz"
note_font_size 42
xpos -2260
ypos 3390
bdwidth 300
bdheight 667
}
BackdropNode {
inputs 0
name BackdropNode5
label "h,H,Q,J,M,C,Sz,Vz,Kz,Wz\n\n :outin:\n | 'J,aM,bM', optional\n | String with requested output (e.g. \"J,aM,bM,M,h\") \[Forward mode]\n | - attributes: 'J': lightness,'Q': brightness,\n | 'M': colorfulness,'C': chroma, 's': saturation,\n | 'h': hue angle, 'H': hue quadrature/composition,\n | 'Wz': whiteness, 'Kz':blackness, 'Sz': saturation, 'V': vividness\n | String with inputs in data \[inverse mode]. \n | Input must have data.shape\[-1]==3 and last dim of data must have \n | the following structure for inverse mode: \n | * data\[...,0] = J or Q,\n | * data\[...,1:] = (aM,bM) or (aC,bC) or (aS,bS) or (M,h) or (C, h), ..."
xpos -1922
ypos 791
bdwidth 411
bdheight 201
}
Input {
inputs 0
name Input1
xpos -984
ypos -137
}
Dot {
name Dot4
label xyzc
xpos -950
ypos -97
}
Dot {
name Dot5
xpos -950
ypos -21