![]() |
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 - 30.12.2024 Nice, then it was just a packaging mistake. ![]() Cu Selur RE: Deoldify Vapoursynth filter - Selur - 01.01.2025 btw.: https://web.law.duke.edu/cspd/publicdomainday/2025/ new stuff is public domain ![]() RE: Deoldify Vapoursynth filter - hallomanbh - 03.01.2025 Happy New Year .Thanks to ALL recent update Reference frames "ColorMnet" video colorization working good . without any error . 1st image original image from video 2nd image refernce based colorization ![]() RE: Deoldify Vapoursynth filter - Dan64 - 03.01.2025 Hello Selur, I just released the new vs-deoldify version v4.6.0 In the new version I added 2 new color models under DDcolor: Real-Time User-Guided Image Colorization with Learned Deep Priors (Zhang, 2017) Colorful Image Colorization (Zhang, 2016) these 2 models has been added as additional models: siggraph17, eccv16, in DDcolor since have in common the same settings and tweaks. On first use the following pytorch models will be downloaded: In vs-deoldify the torch hub directory is in: Hybrid\64bit\Vapoursynth\Lib\site-packages\vsdeoldify\models You can install the new version with the command .\python -m pip install https://github.com/dan64/vs-deoldify/releases/download/v4.6.0/vsdeoldify-4.6.0-py3-none-any.whl No additional packages are necessary. To add the new models in Hybrid GUI is just enough that you add the new DDcolor models 2 & 3 as described in the description of parameter DDcolor-model contained in the ddcolor_p list: DDColor-model to use (default = 1): I hope that you have time to add them. Thanks Dan RE: Deoldify Vapoursynth filter - Selur - 03.01.2025 I'll try to look into it. A bit confused. a. if this is a modification of DDColor, shouldn't DDColor get adjusted? b. if this has nothing to do with DDColor, shouldn't the parameters&co get renamed? Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 03.01.2025 To simplify the development on my side, and I hope also on your side. From the point of view of the GUi are just 2 additional models other that "modelscope" and "artististic". In the HAVC_ddeoldify when are used the model 2 and 3 in ddcolor_p, like in: clip = HAVC_ddeoldify(clip=clip, method=1, ddcolor_p=[2, 16, 1, 0, True], ddtweak=False) will use the new "Colorizer" code and not DDcolor. The 2 new models have the same instability problems than DDcolor, in this way I can use the filters already developed to stabilize DDcolor, to stabilize also the siggraph17 and eccv16 color models. I will post a comparison in the thread HAVC Filter User Guide Dan RE: Deoldify Vapoursynth filter - Selur - 03.01.2025 Created a new Hybrid_deoldify which adds the new models as choice. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 03.01.2025 The new models has been added on DeOldify instead of DDcolor. The models should be added with index 2 and 3 as described below DDColor-model to use (default = 1): Please fix it. Dan RE: Deoldify Vapoursynth filter - Selur - 03.01.2025 Before I used: values.clear(); But you also changed the old models. ![]() And changed the defaults, thus invalidating any old settings for this in Hybrid. ![]() Changed it now to: values.clear(); Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 03.01.2025 I think that there is a misunderstanding. You should change the list "vsDDColorModel" (or something similar) Your version changed the DeOldify list while DeOldify should be left untouched as shown below Instead the 2 new models should be added to DDColor as shown below Please fix it. Dan |