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 - Selur - 06.04.2024 I'll look at it later. Side note: you might want to thing about using semantic versioning (MAJOR.MINOR.PATCH) for projects which have a public interface/api. Cu Selur RE: Deoldify Vapoursynth filter - Selur - 06.04.2024 updated the test download Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 06.04.2024 It works! Thanks, Dan RE: Deoldify Vapoursynth filter - Selur - 06.04.2024 => will make a public release in ~1hr (uploading all the stuff takes quite some time) Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 09.04.2024 Hello Selur, good news! I released the new version 3.1.0 : https://github.com/dan64/vs-deoldify/releases/tag/v3.1.0 Despite the small increment I think that this release represent a big jump. I was brave enough to implement what no one has ever implemented in Vapoursynth: The Chroma Adjustment Please read the explanation in the README. But I think that it is better to try it to understand what this filter is really doing. I was finally able to almost solve the problem of fast changing of colors especially in the Magenta/Violet color range of DDColor/Deoldify. I hope that you like it. Dan RE: Deoldify Vapoursynth filter - Selur - 09.04.2024 Sounds nice will look at it tomorrow after work. Cu Selur RE: Deoldify Vapoursynth filter - Selur - 10.04.2024 new: ddtweak_p: list = [0.0, 1.0, 2.5, True, 0.2, 0.5, 1.5, 0.5, "70:90,300:360|0.2,0"] ddtweak_p: list = [0.0, 1.0, 2.5, True, 0.3, 0.6, 0.7, 0.5] A quick glance at https://github.com/dan64/vs-deoldify?tab=readme-ov-file#chroma-adjustment => You are aware that you are probably the only person out there that will/can use this, right? Will look at it after work, but I will have to check every value of each parameter to be sure they match with the defaults. Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 10.04.2024 I tried to explain in the README, but there is not a easy way to apply this kind of chroma change, I'm not aware of filters being able to do that. It could be useful if the Color Panel in vsViewer will be extended to display the values of HSV, currently only RGB and YUV values are shown. To get the correct range to adjust, at the moment, I save a screenshot of the image with the wrong colors and open it in Paint.NET and use the color picker tool to see the HSV values. I noted a defect in the current version of Hybrid. I can add more parameters in the list as shown in this screenshot But when I uncheck the filters are restored the old values Could you fix this issue ? Thanks, Dan (10.04.2024, 05:45)Selur Wrote: new: Updated the description of changes in the release changelog: https://github.com/dan64/vs-deoldify/releases/tag/v3.1.0 Dan RE: Deoldify Vapoursynth filter - Selur - 10.04.2024 Quote:Could you fix this issue ?There is nothing to fix. That is a text field, Hybrid does no validation for it. (too many parameters to write checks for them) Updated the download, hopefully I got all changes. When calling (increased renderfactor to 25): # adding colors using DeOldify Error on frame 0 request: Cu Selur RE: Deoldify Vapoursynth filter - Dan64 - 10.04.2024 The problem is that the input_size in ddcolor must be divisible by 32. Try to increase the render_factor to 26, and should work. I will release a fix to ensure that the ddcolor input_size will be divisible by 32. Thanks, Dan |