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) |
RE: Deoldify Vapoursynth filter - Dan64 - 11.04.2024 (11.04.2024, 18:47)Selur Wrote: You are nearly using 50 parameters! I do agree that this filter is starting to have a complexity similar to QTGMC, and a "preset" approach could simplify the use. I still need to perform more tests to define the optimal parameters for a given clip or scene. I will think about it... Thanks for the modded version of vsViewer Dan RE: Deoldify Vapoursynth filter - Dan64 - 27.04.2024 Hello Selur, I'm going to release a new version of vsdeoldify. The main changes are: 1) Has been added a new filter function supporting the presets def ddeoldify_main(clip: vs.VideoNode, Preset: str = 'Fast', ColorFix: str = 'Violet/Red', ColorMap: str = 'None') -> vs.VideoNode: I don't have added the preset "Custom", but I expected the the GUI will add this option, in this case the GUI should enable the full list of parameters as currently implemented. As you can see has been added a new Color Mapping feature, that can be controlled by using the new parameter "ColorMap". Here you can find an example of results obtained using this parameter: https://imgsli.com/MjU5NTgy I don't expect that this kind of mapping can be used on a full movie, but it could be useful to adjust the color on some portions of a movie, this is the reason why the default value is "None" (no mapping). 2) Has been added a new parameters to the function deoldify() dotweak, dotweak_p these are the tweak parameters for DeOldify(). Despite DDColor, DeOldify has not big issues on chroma noise, but on fast presets it could be useful. These parameters can be set only by using the "Custom" preset. 3) Has been added the new parameter "colormap" to the function ddeoldify_stabilizer() 4) Some of the default values of function deoldify() , ddeoldify_stabilizer() has been changed. I hope that you have time to implement the new changes (I attached the updated filter). When the new GUI will be available I will release the new version Thanks, Dan P.S. I counted that QTGMC has more than 80 parameters, well above the number of parameters added in this version RE: Deoldify Vapoursynth filter - Selur - 27.04.2024 Will look at it tomorrow. https://imgsli.com/MjU5NTgy <- 'Blue -> Red', is the same as 'Blue -> Green', think you mixed up the images. Quote:Some of the default values of function deoldify() , ddeoldify_stabilizer() has been changed.... hopefully I don't will anything ... Quote: I counted that QTGMC has more than 80 parameters, well above the number of parameters added in this version Angel Quote:Has been added a new filter function supporting the presetsnice Quote: I don't have added the preset "Custom", but I expected the the GUI will add this option, in this case the GUI should enable the full list of parameters as currently implemented.Maybe I should instead better drop the custom mode,... Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 27.04.2024 (27.04.2024, 21:09)Selur Wrote:Quote: I don't have added the preset "Custom", but I expected the the GUI will add this option, in this case the GUI should enable the full list of parameters as currently implemented.Maybe I should instead better drop the custom mode,... For QTGMC the "Custom" preset allows to modify a lot of parameters. I don't understand the reason to drop the support to "Custom" mode for vsdeoldify since has been already developed. Dan I forgot to add the support to fp16 in the new function ddeoldify_main() def ddeoldify_main(clip: vs.VideoNode, Preset: str = 'Fast', ColorFix: str = 'Violet/Red', ColorMap: str = 'None', enable_fp16: bool = True) -> vs.VideoNode: I attached the updated RC2. Dan RE: Deoldify Vapoursynth filter - Selur - 28.04.2024 I uploaded a new test version. Not sure what I missed or if I missed something, but for me main 'fast' uses different settings then the 'default' values. => have fun with it Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 28.04.2024 You are in right, I attached a new version where the default values are aligned. The GUI is Ok, but it is missing an option to switch from presets to custom values. Dan RE: Deoldify Vapoursynth filter - Selur - 28.04.2024 updated the test download Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 28.04.2024 Now with the "custom" preset it is possible to set the custom parameters. But I expect that when preset is different from "custom" is called the function "ddeoldify_main()" with in input the selected presets, but instead are called the functions ddeoldify() and ddeoldify_stabilizer() as in the "custom" preset. Moreover there is a typo in setting the custom parameter smooth_p, in the list is passed the value none instead of string "none". Dan RE: Deoldify Vapoursynth filter - Selur - 28.04.2024 Uploaded a new test version. Cu Selur RE: Deoldify Vapoursynth filter - Selur - 28.04.2024 Uploaded a new test version. (accidentially used 'preset' instead of 'Preset') |