![]() |
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 - zspeciman - 03.03.2024 Around 15-20% faster, that's always good news. Any thoughts about this Google Colorization Transformer? https://github.com/google-research/google-research/tree/master/coltran There is an article comparing it to Deoldify https://habr.com/en/companies/ruvds/articles/568426/ RE: Deoldify Vapoursynth filter - Dan64 - 03.03.2024 yes I read the article, the conclusion is that Deoldify is better. But the comparison is unfair, ColTran is using very large networks, which is not suitable for practical encoding, because the speed will be around 0.001fps. Despite the larger networks used by ColTran, Deoldify was on average significantly better than ColTran. Dan (03.03.2024, 17:09)Selur Wrote: I found a bug in the function adjust.tweak() due to a typo (I written "clp" instead of "clip"). I released a new version fixing it: https://github.com/dan64/vs-deoldify/releases/tag/v1.1.4 Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 03.03.2024 ARGH,... just spend an hour uploading a new torch addon,.. ![]() (and there goes another 1 1/2 hours packaging and updating ![]() But thanks for the info about the fix. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 03.03.2024 I update the README to include Hybrid support: https://github.com/dan64/vs-deoldify Thanks again for your help ![]() Dan RE: Deoldify Vapoursynth filter - Selur - 05.03.2024 No need to thank me, I'm thankful to add a new 'plaything' to Hybrid. ![]() btw. if you are looking for a new project https://github.com/sczhou/ProPainter could need a Vapoursynth wrapper. ![]() ![]() Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 05.03.2024 I'm working on writing a comparison of Deoldify, DDColor, ColTran and DDeoldify. I will post the results on you "Small Talk" section of your forum. ![]() Dan P.S. I will look to ProPainter later. RE: Deoldify Vapoursynth filter - zspeciman - 05.03.2024 Great work to the both of you. I've got it working as well. I've run a video comparison between regular Deoldify and the Hybrid Deoldify. For some reason the Hybrid version is a little brighter, not as dark. Where is the setting to fix that? RE: Deoldify Vapoursynth filter - Selur - 05.03.2024 Using a tv scale source. Adding: clip = core.resize.Bicubic(clip, range_in_s="limited", range_s="full") But using: # Setting color range to PC (full) range. So it might be a tv vs. pc scale problem. If you use Tweak on full scale input, make sure to disable 'Coring', since that will limit the input to tv scale. If you use an image as source: try different luma range setting. => would need the source to say for sure where the problem is ![]() Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 06.03.2024 (05.03.2024, 20:06)zspeciman Wrote: Great work to the both of you. I've got it working as well. I published in https://github.com/dan64/vs-deoldify a Model Comparison section, where you can find the Hybrid setup used and the test images. Dan (03.03.2024, 19:14)zspeciman Wrote: Around 15-20% faster, that's always good news. Any thoughts about this Google Colorization Transformer? I published in https://github.com/dan64/vs-deoldify a Model Comparison section, using as reference images the ones published in the Habr article. Instead of using a subjective measure to evaluate the color differences I used a quantitative method using the CIEDE2000 color similarity metric. In the test the ColTran + TensorFlow 2.4.1 was the model that performed worse. Dan RE: Deoldify Vapoursynth filter - zspeciman - 06.03.2024 @Dan64, that was a nice test you run. I was colorizing some photos and videos as well to see the difference. DDcolor photo images are stunning, but in the videos, in some parts it works very well (more robust color than standalone DeOldify) and in others parts more like the 60s psychedelic colors. The merge concept is a brilliant idea to combine the stability of DeOldify with the the color pop of DDcolor I have few questions about some of the settings, as they relate to video In DDcolor, what is Input size about? FP16? Artistic Model vs ModelScope? I wasn't sure what Streams settings was about either, but when I changed 1 to 4, the video had a several corrupted images, so I stuck to 1 In DeOldify with Simple Merge enabled, in the DDcolor settings on the right, what does that input size about? |