![]() |
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 Now "SC thresh", "SC SSIM thresh" and "SC min freq" are always disabled. RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Those are enabled when refMerge is used. bool useExModel = model->boolValue("vsHAVCUseExModel"); Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 They are always used, because are the minimum fields necessary to extract the reference frames from a Video Clip. With Ref merge there are 2 steps of scene detection, one performed with ScMinFreq=1 (automatically set by HAVC_main) and the second that is using "SC thresh" and "SC min freq" to extract the reference frame to be used for the temporal stabilization. Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Okay, updated Hybrid_deoldify to always enable and add (when they are not at the default value) them when exModel is used. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 When is selected DeepRemaster the "Frames" are not reported in the script Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Quote:Every time the Exemplar Models are enabled and for the models: 0, 1, 2, 5, 6.You meant 'methods' (0,1,2,5,6) and then I mixed then method and model too ![]() Updated Hybrid_deoldify Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 This is a special case when the directory can be select (for output) Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Updated Hybrid_deoldify. Are there also restriction on when "Reference frames only" should be available? Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.02.2025 (09.02.2025, 18:17)Selur Wrote: Updated Hybrid_deoldify. In my code there is already this check implemented if not (ScFrameDir is None) and DeepExMethod != 0 and DeepExOnlyRefFrames: Dan RE: Deoldify Vapoursynth filter - Selur - 09.02.2025 Adjusted Hybrid_deoldify to only enable "Reference frames only" when Method is 0 and ScFrameDir isn't empty. Cu Selur |