![]() |
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
109
110
111
112
113
114
|
RE: Deoldify Vapoursynth filter - Dan64 - 11.09.2025 Before calling the filter it is necessary to convert the clip to RGB24 (as usual) clip = clip.resize.Bicubic(format=vs.RGB24, matrix_in_s="709", range_in_s="limited", range_s="full") But the generated code convert the clip in RGBS format (note: limited -> limited). clip = core.resize.Bicubic(clip=clip, format=vs.RGBS, matrix_in_s="709", range_in_s="limited", range_s="limited") Now I added this check in the filter if clip.format.id != vs.RGB24: But it is better that the conversion is provided by Hybrid. Dan RE: Deoldify Vapoursynth filter - Selur - 11.09.2025 Uploaded a new Hybrid_havc_test which should enforce RGB24 and use limited->full. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 11.09.2025 I released the new RC5 Main changes: 1) the "B&W mode" "ScaleAbs + Simple(RGB)" should be renamed in "CLAHE (luma) + Simple(RGB)" 2) In HAVC_main I added the parameter FrameInterp (integer), the meaning of parameter is the following :param FrameInterp: This parameter will allow to enable the frame interpolation. This method will use Using this approach it is possible to speed-up the coloring process by 30%-50% (depending on the settings) without significant color loss. Dan RE: Deoldify Vapoursynth filter - Selur - 11.09.2025 Quote:1) the "B&W mode" "ScaleAbs + Simple(RGB)" should be renamed in "CLAHE (luma) + Simple(RGB)"for both HAVC_main and ColorPostProcessing? RE: Deoldify Vapoursynth filter - Dan64 - 11.09.2025 yes, please note that the tooltip of "B&W tune" contains also 'Light+Custom', x2 that was decided to remove. Dan RE: Deoldify Vapoursynth filter - Selur - 11.09.2025 Is FrameInterp a 'Exemplar Models' sub-option or a general option? Is it only available when Deep-Exemplar is used as DeepExModel? Quote:FrameInterp: This parameter will allow to enable the frame interpolation. This method will useyou might want to add something about what the gain of using this is,.. atm. it only states the downside of using the option,... RE: Deoldify Vapoursynth filter - Dan64 - 11.09.2025 No, it is a general option of HAVC, is not necessary that the "Exemplar Models" is checked. Only the HAVC coloring process will be speed up. This solution should also solve the problem of double encoding on my side. Dan RE: Deoldify Vapoursynth filter - Selur - 11.09.2025 Quote: This method will use Deep-Exemplar to interpolate the colored frames.So independent of Exemplar Model Deep-Exemplar will be used if the option has a value > 0? Cu Selur Ps.: Updated Hybrid_havc_test RE: Deoldify Vapoursynth filter - Dan64 - 11.09.2025 yes, as you wrote in the tool-tip. The new field Interpolation is passed properly but is disabled if "exemplar Models" is unchecked, please fix it. Dan RE: Deoldify Vapoursynth filter - Selur - 11.09.2025 Updated Hybrid_havc_test |