forked from olive-editor/olive
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathofxTestLog.txt
More file actions
1887 lines (1761 loc) · 145 KB
/
Copy pathofxTestLog.txt
File metadata and controls
1887 lines (1761 loc) · 145 KB
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
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Failed on getting int property OfxPropAPIVersion[0], host returned status kOfxStatErrBadIndex;
Retrieved int property OfxPropAPIVersion[0], was given 0.
ERROR : Failed on getting int property OfxPropAPIVersion[1], host returned status kOfxStatErrBadIndex;
Retrieved int property OfxPropAPIVersion[1], was given 0.
Retrieved string property OfxPropName[0], was given UNKNOWN.
Retrieved string property OfxPropLabel[0], was given UNKNOWN.
ERROR : Failed on getting int property OfxPropVersion[0], host returned status kOfxStatErrBadIndex;
Retrieved int property OfxPropVersion[0], was given 0.
ERROR : Failed on getting int property OfxPropVersion[1], host returned status kOfxStatErrBadIndex;
Retrieved int property OfxPropVersion[1], was given 0.
ERROR : Failed on getting int property OfxPropVersion[2], host returned status kOfxStatErrBadIndex;
Retrieved int property OfxPropVersion[2], was given 0.
Retrieved string property OfxPropVersionLabel[0], was given .
Retrieved int property OfxImageEffectHostPropIsBackground[0], was given 0.
Retrieved int property OfxImageEffectPropSupportsOverlays[0], was given 1.
Retrieved int property OfxImageEffectPropSupportsMultiResolution[0], was given 1.
Retrieved int property OfxImageEffectPropSupportsTiles[0], was given 1.
Retrieved int property OfxImageEffectPropTemporalClipAccess[0], was given 1.
Retrieved int property OfxImageEffectPropMultipleClipDepths[0], was given 1.
Retrieved int property OfxImageEffectPropSupportsMultipleClipPARs[0], was given 0.
Retrieved int property OfxImageEffectPropSetableFrameRate[0], was given 0.
Retrieved int property OfxImageEffectPropSetableFielding[0], was given 0.
Retrieved int property OfxImageEffectInstancePropSequentialRender[0], was given 0.
Retrieved int property OfxParamHostPropSupportsStringAnimation[0], was given 0.
Retrieved int property OfxParamHostPropSupportsCustomInteract[0], was given 0.
Retrieved int property OfxParamHostPropSupportsChoiceAnimation[0], was given 0.
Retrieved int property OfxParamHostPropSupportsBooleanAnimation[0], was given 0.
Retrieved int property OfxParamHostPropSupportsCustomAnimation[0], was given 0.
Retrieved pointer property OfxPropHostOSHandle[0], was given 0x0.
ERROR : Failed on getting int property OfxParamHostPropSupportsParametricAnimation[0], host returned status kOfxStatErrUnknown;
Retrieved int property OfxParamHostPropSupportsParametricAnimation[0], was given 0.
Retrieved int property OfxImageEffectPropRenderQualityDraft[0], was given 0.
ERROR : Failed on getting string property OfxImageEffectHostPropNativeOrigin[0], host returned status kOfxStatErrBadIndex;
Retrieved string property OfxImageEffectHostPropNativeOrigin[0], was given (null).
Retrieved string property OfxImageEffectPropOpenGLRenderSupported[0], was given false.
ERROR : Failed on getting int property FnOfxImageEffectCanTransform[0], host returned status kOfxStatErrUnknown;
Retrieved int property FnOfxImageEffectCanTransform[0], was given 0.
ERROR : Failed on getting int property uk.co.thefoundry.OfxImageEffectPropMultiPlanar[0], host returned status kOfxStatErrUnknown;
Retrieved int property uk.co.thefoundry.OfxImageEffectPropMultiPlanar[0], was given 0.
Retrieved int property OfxParamHostPropMaxParameters[0], was given -1.
Retrieved int property OfxParamHostPropMaxPages[0], was given 0.
Retrieved int property OfxParamHostPropPageRowColumnCount[0], was given 0.
Retrieved int property OfxParamHostPropPageRowColumnCount[1], was given 0.
ERROR : Failed on getting int property NatronOfxHostIsNatron[0], host returned status kOfxStatErrUnknown;
Retrieved int property NatronOfxHostIsNatron[0], was given 0.
ERROR : Failed on getting int property NatronOfxParamHostPropSupportsDynamicChoices[0], host returned status kOfxStatErrUnknown;
Retrieved int property NatronOfxParamHostPropSupportsDynamicChoices[0], was given 0.
ERROR : Failed on getting int property NatronOfxParamPropChoiceCascading[0], host returned status kOfxStatErrUnknown;
Retrieved int property NatronOfxParamPropChoiceCascading[0], was given 0.
ERROR : Failed on getting string property NatronOfxImageEffectPropChannelSelector[0], host returned status kOfxStatErrUnknown;
Retrieved string property NatronOfxImageEffectPropChannelSelector[0], was given (null).
ERROR : Failed on getting int property OfxImageEffectPropCanDistort[0], host returned status kOfxStatErrUnknown;
Retrieved int property OfxImageEffectPropCanDistort[0], was given 0.
ERROR : Failed on fetching dimension for property NatronOfxPropNativeOverlays, host returned status kOfxStatErrUnknown.
Fetched dimension of property NatronOfxPropNativeOverlays, returned 0.
Fetched dimension of property OfxImageEffectPropSupportedComponents, returned 0.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be SmoothBilateralCImg.
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Set string property OfxPropPluginDescription[0] to be Blur input stream by bilateral filtering.
Uses the 'blur_bilateral' function from the CImg library.
See also: http://opticalenquiry.com/nuke/index.php?title=Bilateral
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be SmoothBilateralGuidedCImg.
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Set string property OfxPropPluginDescription[0] to be Apply joint/cross bilateral filtering on image A, guided by the intensity differences of image B. Uses the 'blur_bilateral' function from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
ERROR : Failed on setting int property NatronOfxImageEffectPropDeprecated[0] to 1, host returned status kOfxStatErrUnknown (3);
Set int property NatronOfxImageEffectPropDeprecated[0] to be 1.
Set string property OfxPropLabel[0] to be BlurCImg.
Set string property OfxPropPluginDescription[0] to be Blur input stream or compute derivatives.
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Note that the Gaussian filter [1] is implemented as an IIR (infinite impulse response) filter [2][3], whereas most compositing software implement the Gaussian as a FIR (finite impulse response) filter by cropping the Gaussian impulse response. Consequently, when blurring a white dot on black background, it produces very small values very far away from the dot. The quasi-Gaussian filter is also IIR.
A very common process in compositing to expand colors on the edge of a matte is to use the premult-blur-unpremult combination [4][5]. The very small values produced by the IIR Gaussian filter produce undesirable artifacts after unpremult. For this process, the FIR quadratic filter (or the faster triangle or box filters) should be preferred over the IIR Gaussian filter.
References:
[1] https://en.wikipedia.org/wiki/Gaussian_filter
[2] I.T. Young, L.J. van Vliet, M. van Ginkel, Recursive Gabor filtering. IEEE Trans. Sig. Proc., vol. 50, pp. 2799-2805, 2002. (this is an improvement over Young-Van Vliet, Sig. Proc. 44, 1995)
[3] B. Triggs and M. Sdika. Boundary conditions for Young-van Vliet recursive filtering. IEEE Trans. Signal Processing, vol. 54, pp. 2365-2367, 2006.
[4] Nuke Expand Edges or how to get rid of outlines. http://franzbrandstaetter.com/?p=452
[5] Colour Smear for Nuke. http://richardfrazer.com/tools-tutorials/colour-smear-for-nuke/
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu).
This plugin was compiled with debug, with assertions, without inlines, without OpenMP, using Clang version 21.0.0 (clang-2100.1.1.101)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
ERROR : Failed on setting int property NatronOfxImageEffectPropDeprecated[0] to 1, host returned status kOfxStatErrUnknown (3);
Set int property NatronOfxImageEffectPropDeprecated[0] to be 1.
Set string property OfxPropLabel[0] to be LaplacianCImg.
Set string property OfxPropPluginDescription[0] to be Blur input stream, and subtract the result from the input image. This is not a mathematically correct Laplacian (which would be the sum of second derivatives over X and Y).
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
ERROR : Failed on setting int property NatronOfxImageEffectPropDeprecated[0] to 1, host returned status kOfxStatErrUnknown (3);
Set int property NatronOfxImageEffectPropDeprecated[0] to be 1.
Set string property OfxPropLabel[0] to be ChromaBlurCImg.
Set string property OfxPropPluginDescription[0] to be Blur the chrominance of an input stream. Smoothing is done on the x and y components in the CIE xyY color space. Used to prep strongly compressed and chroma subsampled footage for keying.
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
ERROR : Failed on setting int property NatronOfxImageEffectPropDeprecated[0] to 1, host returned status kOfxStatErrUnknown (3);
Set int property NatronOfxImageEffectPropDeprecated[0] to be 1.
Set string property OfxPropLabel[0] to be BloomCImg.
Set string property OfxPropPluginDescription[0] to be Apply a Bloom filter (Kawase 2004) that sums multiple blur filters of different radii,
resulting in a larger but sharper glare than a simple blur.
It is similar to applying 'Count' separate Blur filters to the same input image with sizes 'Size', 'Size'*'Ratio', 'Size'*'Ratio'^2, etc., and averaging the results.
The blur radii follow a geometric progression (of common ratio 2 in the original implementation, bloomRatio in this implementation), and a total of bloomCount blur kernels are summed up (bloomCount=5 in the original implementation, and the kernels are Gaussian).
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Ref.: Masaki Kawase, "Practical Implementation of High Dynamic Range Rendering", GDC 2004.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be BlurCImg.
Set string property OfxPropPluginDescription[0] to be Blur input stream or compute derivatives.
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Note that the Gaussian filter [1] is implemented as an IIR (infinite impulse response) filter [2][3], whereas most compositing software implement the Gaussian as a FIR (finite impulse response) filter by cropping the Gaussian impulse response. Consequently, when blurring a white dot on black background, it produces very small values very far away from the dot. The quasi-Gaussian filter is also IIR.
A very common process in compositing to expand colors on the edge of a matte is to use the premult-blur-unpremult combination [4][5]. The very small values produced by the IIR Gaussian filter produce undesirable artifacts after unpremult. For this process, the FIR quadratic filter (or the faster triangle or box filters) should be preferred over the IIR Gaussian filter.
References:
[1] https://en.wikipedia.org/wiki/Gaussian_filter
[2] I.T. Young, L.J. van Vliet, M. van Ginkel, Recursive Gabor filtering. IEEE Trans. Sig. Proc., vol. 50, pp. 2799-2805, 2002. (this is an improvement over Young-Van Vliet, Sig. Proc. 44, 1995)
[3] B. Triggs and M. Sdika. Boundary conditions for Young-van Vliet recursive filtering. IEEE Trans. Signal Processing, vol. 54, pp. 2365-2367, 2006.
[4] Nuke Expand Edges or how to get rid of outlines. http://franzbrandstaetter.com/?p=452
[5] Colour Smear for Nuke. http://richardfrazer.com/tools-tutorials/colour-smear-for-nuke/
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu).
This plugin was compiled with debug, with assertions, without inlines, without OpenMP, using Clang version 21.0.0 (clang-2100.1.1.101)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be LaplacianCImg.
Set string property OfxPropPluginDescription[0] to be Blur input stream, and subtract the result from the input image. This is not a mathematically correct Laplacian (which would be the sum of second derivatives over X and Y).
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be ChromaBlurCImg.
Set string property OfxPropPluginDescription[0] to be Blur the chrominance of an input stream. Smoothing is done on the x and y components in the CIE xyY color space. Used to prep strongly compressed and chroma subsampled footage for keying.
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be BloomCImg.
Set string property OfxPropPluginDescription[0] to be Apply a Bloom filter (Kawase 2004) that sums multiple blur filters of different radii,
resulting in a larger but sharper glare than a simple blur.
It is similar to applying 'Count' separate Blur filters to the same input image with sizes 'Size', 'Size'*'Ratio', 'Size'*'Ratio'^2, etc., and averaging the results.
The blur radii follow a geometric progression (of common ratio 2 in the original implementation, bloomRatio in this implementation), and a total of bloomCount blur kernels are summed up (bloomCount=5 in the original implementation, and the kernels are Gaussian).
The blur filter can be a quasi-Gaussian, a Gaussian, a box, a triangle or a quadratic filter.
Ref.: Masaki Kawase, "Practical Implementation of High Dynamic Range Rendering", GDC 2004.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be ErodeBlurCImg.
Set string property OfxPropPluginDescription[0] to be Performs an operation that looks like an erosion or a dilation by smoothing the image and then remapping the values of the result.
The image is first smoothed by a triangle filter of width 2*abs(size).
Now suppose the image is a 0-1 step edge (I=0 for x less than 0, I=1 for x greater than 0). The intensities are linearly remapped so that the value at x=size-0.5 is mapped to 0 and the value at x=size+0.5 is mapped to 1.
This process usually works well for mask images (i.e. images which are either 0 or 1), but may give strange results on images with real intensities, where another Erode filter has to be used.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be SharpenCImg.
Set string property OfxPropPluginDescription[0] to be Sharpen the input stream by enhancing its Laplacian.
The effects adds the Laplacian (as computed by the Laplacian plugin) times the 'Amount' parameter to the input stream.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be SoftenCImg.
Set string property OfxPropPluginDescription[0] to be Soften the input stream by reducing its Laplacian.
The effects subtracts the Laplacian (as computed by the Laplacian plugin) times the 'Amount' parameter from the input stream.
Uses the 'vanvliet' and 'deriche' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be EdgeExtendCImg.
Set string property OfxPropPluginDescription[0] to be Fill a matte (i.e. a non-opaque color image with an alpha channel) by extending the edges of the matte. This effect does nothing an an opaque image.
If the input matte comes from a keyer, the alpha channel of the matte should be first eroded by a small amount to remove pixels containing mixed foreground/background colors. If not, these mixed colors may be extended instead of the pure foreground colors.
The filling process works by iteratively blurring the image, and merging the non-blurred image over the image to get to the next iteration. There are exactly 'Slices' such operations. The blur size at each iteration is linearly increasing.
'Size' is thus the total size of the edge extension, and 'Slices' is an indicator of the precision: the more slices there are, the sharper is the final image near the original edges.
Optionally, the image can be multiplied by the alpha channel on input (premultiplied), and divided by the alpha channel on output (unpremultiplied), so that if RGB contain an image and Alpha contains a mask, the output is an image where the RGB is smeared from the non-zero areas of the mask to the zero areas of the same mask.
The 'Size' parameter gives the size of the largest blur kernel, 'Count' gives the number of blur kernels, and 'Ratio' gives the ratio between consecutive blur kernel sizes. The size of the smallest blur kernel is thus 'Size'/'Ratio'^('Count'-1)
To get the classical single unpremult-blur-premult, use 'Count'=1 and set the size to the size of the blur kernel. However, near the mask borders, a frontier can be seen between the non-blurred area (this inside of the mask) and the blurred area. Using more blur sizes will give a much smoother transition.
The idea for the builtup blurs to expand RGB comes from the EdgeExtend effect for Nuke by Frank Rueter (except the blurs were merged from the smallest to the largest, and here it is done the other way round), with suggestions by Lucas Pfaff.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be EdgeDetectCImg.
Set string property OfxPropPluginDescription[0] to be Perform edge detection by computing the image gradient magnitude. Optionally, edge detection can be preceded by blurring, and followed by erosion and thresholding. In most cases, EdgeDetect is followed a Grade node to extract the proper edges and generate a mask from these.
For color or multi-channel images, several edge detection algorithms are proposed to combine the gradients computed in each channel:
- Separate: the gradient magnitude is computed in each channel separately, and the output is a color edge image.
- RMS: the RMS of per-channel gradients magnitudes is computed.
- Max: the maximum per-channel gradient magnitude is computed.
- Tensor: the tensor gradient norm [1].
References:
- [1] Silvano Di Zenzo, A note on the gradient of a multi-image, CVGIP 33, 116-125 (1986). http://people.csail.mit.edu/tieu/notebook/imageproc/dizenzo86.pdf
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be SmoothPatchBasedCImg.
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Set string property OfxPropPluginDescription[0] to be Denoise selected images by non-local patch averaging.
This uses the method described in: Non-Local Image Smoothing by Applying Anisotropic Diffusion PDE's in the Space of Patches (D. Tschumperlé, L. Brun), ICIP'09 (https://tschumperle.users.greyc.fr/publications/tschumperle_icip09.pdf).
Uses the 'blur_patch' function from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
Set string property OfxPropLabel[0] to be DilateCImg.
Set string property OfxImageEffectPluginPropGrouping[0] to be Filter.
Set string property OfxPropPluginDescription[0] to be Dilate (or erode) input stream by a rectangular structuring element of specified size and Neumann boundary conditions (pixels out of the image get the value of the nearest pixel).
A negative size will perform an erosion instead of a dilation.
Different sizes can be given for the x and y axis.
Uses the 'dilate' and 'erode' functions from the CImg library.
CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications (see http://cimg.eu)..
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 0.
Set string property OfxImageEffectPropSupportedContexts[0] to be OfxImageEffectContextFilter.
Fetched dimension of property OfxImageEffectPropSupportedContexts, returned 1.
Set string property OfxImageEffectPropSupportedContexts[1] to be OfxImageEffectContextGeneral.
Fetched dimension of property OfxImageEffectPropSupportedPixelDepths, returned 0.
Set string property OfxImageEffectPropSupportedPixelDepths[0] to be OfxBitDepthFloat.
Set int property OfxImageEffectPluginPropSingleInstance[0] to be 0.
Set int property OfxImageEffectPluginPropHostFrameThreading[0] to be 1.
Set int property OfxImageEffectPropSupportsMultiResolution[0] to be 1.
Set int property OfxImageEffectPropSupportsTiles[0] to be 1.
Set int property OfxImageEffectPropTemporalClipAccess[0] to be 0.
Set int property OfxImageEffectPluginPropFieldRenderTwiceAlways[0] to be 1.
Set int property OfxImageEffectPropSupportsMultipleClipPARs[0] to be 0.
Set int property OfxImageEffectPropMultipleClipDepths[0] to be 0.
Set string property OfxImageEffectPluginRenderThreadSafety[0] to be OfxImageEffectRenderFullySafe.
STOP mainEntry (OfxActionDescribe)
********************************************************************************
START mainEntry (OfxActionUnload)
STOP mainEntry (OfxActionUnload)
ERROR : Host attempted to get plugin 17, when there is only 17 plugin(s), so it should have asked for 0.
********************************************************************************
START mainEntry (OfxActionLoad)
WARNING : Could not fetch the optional suite 'OfxParametricParameterSuite' version 1.
WARNING : Could not fetch the optional suite 'NukeOfxCameraSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 1.
WARNING : Could not fetch the optional suite 'uk.co.thefoundry.FnOfxImageEffectPlaneSuite' version 2.
WARNING : Could not fetch the optional suite 'OfxVegasProgressSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasStereoscopicImageEffectSuite' version 1.
WARNING : Could not fetch the optional suite 'OfxVegasKeyframeSuite' version 1.
ERROR : Tried to create host description when we already have one.
START validating properties of Host Property.
STOP property validation of Host Property.
STOP mainEntry (OfxActionLoad)
********************************************************************************
START mainEntry (OfxActionDescribe)
START validating properties of Plugin Descriptor.
ERROR : Default value of OfxImageEffectPluginRenderThreadSafety[0] = 'OfxImageEffectRenderInstanceSafe', it should be 'OfxImageEffectRenderFullySafe';
ERROR : Default value of OfxImageEffectPluginPropHostFrameThreading[0] = 1, it should be 0;
STOP property validation of Plugin Descriptor.
START validating properties of Plugin Descriptor.