16.03.2026, 20:54
using:
shows that now DeHalo can help:
tip: when tweaking setting of a specific filter it helps to enable "Filtering->Vapoursynth->Misc->UI->Show 'Gimmick'-controls" and then enable 'Gimmick->Compare Effect' for that filter, while also using "Filtering->Vapoursynth->Misc->Preview->Split Compare View->FilterView Mode" set to 'interleaved'.
Cu Selur
clip = core.descale.Debilinear(clip, width=360, height=576) # 360x576
# adjusting color space from RGBS to YUV444P16 for vsQTGMC
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P16, matrix_s="470bg", range_in_s="full", range_s="limited") # additional resize to match target color sampling
# Deinterlacing using QTGMC
clip = qtgmc.QTGMC(clip, Preset="Fast", TFF=True, opencl=True) # new fps: 50
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # scan type: progressive
clip = core.fmtc.resample(clip=clip, w=720, h=576, kernel="spline64", interlaced=False, interlacedd=False)# undoing the adjusting from 'resize before deinterlace'
clip = dehalo.BlindDeHalo3(clip, strength=85, hidamp=4.00, sharpness=0.50, tweaker=0.30, PPmode=-1, interlaced=False)
# applying FineDeHalo to remove halos
clip = dehalo.FineDehalo(clip, rx=3.00)
# contrast sharpening using CAS
clip = core.cas.CAS(clip, sharpness=0.700)tip: when tweaking setting of a specific filter it helps to enable "Filtering->Vapoursynth->Misc->UI->Show 'Gimmick'-controls" and then enable 'Gimmick->Compare Effect' for that filter, while also using "Filtering->Vapoursynth->Misc->Preview->Split Compare View->FilterView Mode" set to 'interleaved'.
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.


