![]() |
|
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
RE: Deoldify Vapoursynth filter - Selur - 18.07.2025 I noticed some files were still missing from the checkpoints-folder, but that does not explain the R72 vs R68 issue. => Uploading new torch add-on. (compressing takes ~6min, uploading takes ~50min) Cu Selur RE: Deoldify Vapoursynth filter - zspeciman - 19.07.2025 I did a fresh install with Hybrid_dev_2025.07.19-131522, error in preview remains. 2025-07-19 07:25:04.161RE: Deoldify Vapoursynth filter - Selur - 19.07.2025 Seems like the spatial_correlation_sampler_backend is missing,... => I'll create a new package an upload it,.. (check in ~1hour) RE: Deoldify Vapoursynth filter - Selur - 19.07.2025 new torch add-on is available,.. RE: Deoldify Vapoursynth filter - zspeciman - 20.07.2025 its working now!!! Thank you so much. RE: Deoldify Vapoursynth filter - Dan64 - 06.09.2025 Hello Selur, I was finally able to apply in HAVC some of color adjustment filters that I developed in Vapoursynth described is this post: New AutoColor adjustment filter The results are satisfactory as you can see in the picture below With the previous version (image on the left) the colors were dull with a majority of "rose" color (the color of skin), with the new version (image on the right) both problems has been solved. To reduce the impact on GUI I recycled the parameter BlackWhiteTune, which now can have the following values: :param BlackWhiteTune: This parameter allows to improve contrast and luminosity of frames colored with HAVC. In the GUI is also necessary to add the following new parameter (a numeric combo-box): :param BlackWhiteMode: Method used by BlackWhiteTune to perform colors adjustments.I attached the RC1 of new version 5.5.0 and a sample containing the new colorization cases introduced by the new/changed parameters I hope that you had time to updated the filter and the GUI. Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 06.09.2025 Thanks for the update. Working most of the day today, and I'm away with friends this eventing, but I should have some time tomorrow to work on it. ![]() Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 07.09.2025 Hello Selur, I attached a new RC2. In this version there are only small internal changes, with no impact on GUI. Dan RE: Deoldify Vapoursynth filter - Selur - 07.09.2025 Got a few questions: a. :param BlackWhiteTune: This parameter allows to improve contrast and luminosity of frames colored with HAVC.Especially for 'custom' I would expect some additional option for the user? b. :param BlackWhiteMode: Method used by BlackWhiteTune to perform colors adjustments.Do I get it right, that BlackWhiteMode should only be set and enabled in the GUI when 'BlackWhiteTune' is set to anything but 'None' ? Or should BlackWhiteMode only be used when 'BlackWhiteTune' uses a '..+Custom'-value? Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 07.09.2025 Hello Selur, here the answer to your questions: a) in the case are used the settings with "+custom" will be used the parameters specified in the "Exemplar Model", in this case should be used the ColorMNet model (but the user can try also the other models). If are used the settings with "+restore", the user settings will be ignored and will be used the internal settings. The internal settings currently implemented are: DeepExPreset: str = 'medium',b) yes BlackWhiteMode is used only if 'BlackWhiteTune' is not set equal 'None' Before release the update in Github I will update documentation to explain better this settings. Dan |