![]() |
Deoldify Vapoursynth filter - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html) +--- Forum: Small Talk (https://forum.selur.net/forum-7.html) +--- Thread: Deoldify Vapoursynth filter (/thread-3595.html) Pages:
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
|
RE: Deoldify Vapoursynth filter - Selur - 15.03.2024 Okay, will try to look at it later this evening or tomorrow. Cu Selur RE: Deoldify Vapoursynth filter - Selur - 15.03.2024 Had a quick look and a question about: Quote:I updated the filter introducing a "gradient mask" merge.looking at the code it looks like this is applied as long as dd_method != 0 and thus a dd_color option, is that as intended? Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 15.03.2024 Just to provide you an example. The movie DV+DD_LumaMerge.mp4 was obtained with the following settings clip = ddeoldify(clip=clip, model=0, render_factor=24, sat=[0.90,0.80], hue=[15.00,15.0], dd_model=1, dd_render_factor=24, dd_tweak_luma_bind=[False, 0.5, 0.5], dd_bright=0.05, dd_cont=1.0, dd_gamma=2.0, dd_method=5, ddcolor_weight = 0.6, luma_mask limit=[0.4, 0.4, 0.3], dd_method_params=[0.6, 1.0, 0.15, 0.15], chroma_resize = True) The movie DV+DD_LumaMerge+DarkDarkness.mp4 was obtained with the following settings clip = ddeoldify(clip=clip, sat=[0.90,0.80], hue=[15.00,15.0], dd_bright=0.05, dd_cont=1.0, dd_gamma=2.0, dd_method=5, ddcolor_weight = 0.6, dd_method_params=[0.6, 2.0, 0.15, 0.2, False], luma_mask=[0.4, 0.4, 0.8], dark_darkness=[True, 0.3, 0.3, 0.2, -0.05]) The post-process " dark_darkness " helped to stabilize the colors on dark scenes Dan RE: Deoldify Vapoursynth filter - Selur - 15.03.2024 Updated the dev version (same link). Will look at the examples. ![]() ![]() Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 15.03.2024 I really like the new GUI, very nice! ![]() Thanks, Dan RE: Deoldify Vapoursynth filter - Dan64 - 16.03.2024 In the last version I shortened the names of dd_tweak_bright, dd_tweak_cont, dd_tweak_gamma in dd_bright, dd_cont, dd_gamma. I decided to revert the changes, so I attached a new updated with the names equals to the ones implemented in Hybrid. I checked all the parameters in the GUI. It is only missing a new boolean parameter "dd_method_params[4]" called "invert_clips" if true is inverted the clip order in all the Merge methods (i.e. clipa-> clipb and clipb->clipa). Dan P.S. here you can find a comparison of LumaMerge using a gradient mask (0.4,0.7) https://imgsli.com/MjQ3NjIy RE: Deoldify Vapoursynth filter - Selur - 16.03.2024 I'll look at it. RE: Deoldify Vapoursynth filter - Selur - 16.03.2024 Updated download (same link). Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 16.03.2024 In the last version, the script is not including any more the string: "dd_method_params: list = [0.6, 2.0, 0.15, 0.2, False]" independently from the fact that "invert merger order" is checked or not. Dan RE: Deoldify Vapoursynth filter - Selur - 16.03.2024 updated the download |