![]() |
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 - Dan64 - 09.02.2025 When Ref Merge is enabled you need to enable "SC min freq". The field "Threshold" was necessary for HAVC_deepex, in HAVC_main is never passed (it is passed "SC thresh") so that you can remove it from the GUI. Also when is selected the Model "Deep-Remaster" the field "Frames" need to be enabled It is missing "remote all-rf" for ColotMNet (DeepExEncMode=2) When is selected the method=5 it shown the "folder" selection window instead of "file" selection. Dan P.S. I think that we are very near to complete the passage to HAVC 5.0 RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Okay, so: this->doSetEnabled(model, "vsHAVCExModelSCThreshold", deepEx && refMerge != 0); updated Hybrid_deoldify (gui and code generation) Cu Selur RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Okay, you added some additional stuff, looking at that now. RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Updated Hybrid_deoldify. RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 New RC9 with some small bug fixed on my side. Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 got it RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 The fields ScThreshold, ScMinFreq are NOT passed in the script. These fields are very important for the Exemplar-based models. Should never been disabled and must always passed in the script. HAVC_main is able to understand what to do with these fields. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Passing them when they are disabled seems wrong. this->doSetEnabled(model, "vsHAVCExModelSCThreshold", deepEx && refMerge != 0); When should ScThreshold, ScMinFreq be adjustable and then passed to HAVC_main ? RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 Every time the Exemplar Models are enabled and for the models: 0, 1, 2, 5, 6. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 updated Hybrid_deoldify. |