Here is short (13s and 48MB) sample: https://mega.nz/file/3NE1hB5A#914cPaeLM9OAoEPo-e9xtj8bFVdf6QvLToh_b_8lO-0
I have tried my own to fix it, but cant beat it. Maybe someone can help me?
+ Reply to Thread
Results 1 to 7 of 7
-
-
There also seems to be some chroma shifting. (trying to shift the chroma back https://imgsli.com/MzM2MjQ1, you might want to tweak it)
Additionally, adding 1x_BleedOut_Compact_300k_net_g.pth and some (a bit too strong) denoising: https://pastebin.com/0nA4Snj3 (script: https://pastebin.com/0nA4Snj3)
jagabo might have some idea about the halo, iirc. he posted 'workable solution' for such strong halos a while ago.Last edited by Selur; 8th Jan 2025 at 13:00.
users currently on my ignore list: deadrats, Stears555 -
Found your suggestion from other thread and used mlrt_ncnn(network_path="1x_BleedOut_Compact_300k_n et_g.onnx") which toned down the chromableed a lot. Chromashifting is indeed also a issue.
-
Make sure to first adjust the shift and then adjust BleedOut.
users currently on my ignore list: deadrats, Stears555 -
Something like:
Code:LWLibavVideoSource("intermediate.demuxed.mpeg") # or other source filter QTGMC() # or other deinterlacer MergeChroma(last, BilinearResize(width/2, height).aWarpSharp2(depth=25).nnedi3_rpow2(2, cshift="SPline36Resize", fwidth=width, fheight=height)) ChromaShiftSP(x=2, y=2)
-
No, ChromaShiftSP is just a wrapper script using normal resizing and MergeChroma, so nothing that isn't part of Avisynth core:
Code:function ChromaShiftSP (clip clp, float "X",float "Y") { X = default(X, 0.0) # positive values shift the chroma to left, negative values to right Y = default(Y, 0.0) # positive values shift the chroma upwards, negative values downwards w = clp.Width() h = clp.Height() clp.MergeChroma(clp.Spline16Resize(w, h, X, Y, w+X, h+Y)) }
Same in the Vapoursynth port.users currently on my ignore list: deadrats, Stears555
Similar Threads
-
Halo or not halo?
By taigi in forum RestorationReplies: 4Last Post: 11th Dec 2024, 12:01 -
Sharpness in QTGMC - but without halo
By rgr in forum RestorationReplies: 6Last Post: 23rd Jul 2024, 18:34 -
Excessive dark halo
By Andreselos in forum RestorationReplies: 0Last Post: 5th Jul 2022, 15:47 -
VHS Halo Reduction Help
By Dry Paint Dealer Undr in forum RestorationReplies: 0Last Post: 28th Jul 2021, 13:16 -
Remove halo/ghosting
By semel1 in forum Newbie / General discussionsReplies: 11Last Post: 15th Feb 2021, 18:50