![]() |
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 - 29.04.2024 With the last version the problem has been solved. I noted that when is selected a Preset the parameters are propagated also in the custom view. This is not necessary since I think is adding an additional layer of complexity in the development. I guess that you are replicating the code of function ddeoldify_main(). In your version the value "none" for ColorFix is not managed correctly, in my code "none" is managed as a special case in this way if co_id == 0: In your version when "none" is selected the hue_range becomes "none|0.3,0.1" I attached an updated version where I changed the code of ddeoldify_main(). I think that the link with the custom parameters is not necessary, but is up to you to decide this implementation. In the case you want to keep the link, please update your code with the version attached. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 29.04.2024 Quote:This is not necessary since I think is adding an additional layer of complexity in the development.It sure does, but it makes it easier to use a preset as base and then adjust it. Will look at it tomorrow after work and fix it. RE: Deoldify Vapoursynth filter - Dan64 - 30.04.2024 Hello Selur, I added a new parameter "ColorTune" to function ddeoldify_main() this parameter allows to define the intensity of noise reduction applied by ColorFix. Please update your code with the attached version. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 30.04.2024 will look at it later,.. RE: Deoldify Vapoursynth filter - Selur - 30.04.2024 Updated the test download, hopefully I didn't miss anything. ![]() Cu Selur RE: Deoldify Vapoursynth filter - zspeciman - 30.04.2024 (28.04.2024, 17:24)Dan64 Wrote:(28.04.2024, 16:40)zspeciman Wrote: Dan, is the video output from the original DeOldify RenderFactor=21 identical to Hybrid DeOldify only Model Video RenderFactor=21 (all other settings off) ? I noticed a difference between the Original DeOldify and the Hybrid-DeOldify. I've attached clips and pics. I'm using Hybrid 2024.04.06.1 If possible run it on your computer to see if you reach the same results as I, maybe I didn't install something right. TestClipSingerBW.mp4 = source video black & white TestClipSingerResultsDeOldifyOriginalRF24.mp4 = Original DeOldify video at Render Factor 24 TestClipSingerResultsDeOldifyHybridRF24.mp4 = Hybrid-DeOldify video at Render Factor 24 (DeOldify only; Model Video, RF 24, everything else disabled) Compare frames around 185, that is the biggest difference. The original DeOldify appears a bit more stable. Then I wanted to see what happened if these two DeOldify produced clips were used as source for DDcolor: Artistic, Chroma Stabilizer enabled [5, 'A', 1, 60, 0.5, 0.8], RF 24. Perhaps that extra stability is passed forward. TestClipSingerResultsDeOldifyHybridRF24-DD24-CS.mp4 & TestClipSingerResultsDeOldifyOriginalRF24-DD24-CS.mp4 It looks, at least to my eyes, that the DDcolor of the Original DeOldify clip as source is a bit less colorful and more stable. Also there were no difference in using Hybrid-DeOldify or the black&white video as source when using DDcolor, they looked the same. RE: Deoldify Vapoursynth filter - Dan64 - 30.04.2024 (30.04.2024, 19:20)zspeciman Wrote:(28.04.2024, 17:24)Dan64 Wrote:(28.04.2024, 16:40)zspeciman Wrote: Dan, is the video output from the original DeOldify RenderFactor=21 identical to Hybrid DeOldify only Model Video RenderFactor=21 (all other settings off) ? Could you provide also the scripts used to generate the clips ? Dan RE: Deoldify Vapoursynth filter - Dan64 - 30.04.2024 Hello Selur, I need your support to answer to zspeciman's question. This is the frame 185 taken from the video "TestClipSingerBW.mp4" If I use the following script # Imports I obtain the following picture that is the same obtained using the original DeOldify But if I use the following script # Imports I obtain the following picture I think that is an issue related to the color space conversion, both my first script and Deoldify original are working on "color space: RGB24, bit depth: 8, yuv luminance scale: full, matrix: 709" While the second script is using in input "color space: YUV420P8, bit depth: 8, yuv luminance scale: limited, matrix: 470bg". Fortunately is not a big issue because using the following script # Imports I obtain this picture that is much better Dan RE: Deoldify Vapoursynth filter - zspeciman - 30.04.2024 See attached, I hope I've done this right, I'm still learning. For TestClipSingerResultsDeOldifyOriginalRF24.mp4, that is straight from DeOldify colab RE: Deoldify Vapoursynth filter - Dan64 - 30.04.2024 (30.04.2024, 21:31)zspeciman Wrote: See attached, I hope I've done this right, I'm still learning. It is not more necessary I was able to reproduce the problem. When will be released the new version of vsdeoldify, it will be available Presets that will simplify the usage of this filter. This is the picture of frame 185 obtained using the new version with RF=24 (Preset="fast"). Dan |