This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Simpsons - TFM vs QTGMC
#19
I would probably use:
# Deinterlacing using TIVTC
clip = core.tivtc.TFM(clip=clip)
clip = core.tivtc.TDecimate(clip=clip, blockx=8, blocky=8)# new fps: 23.976
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # progressive
# DEBUG: vsTIVTC changed scanorder to: progressive
clip = residual.Vinverse2(clp=clip)
clip = core.std.Crop(clip=clip, left=6, right=6, top=0, bottom=2)# cropping to 708x478
# Fix bright and dark line artifacts near the border of an image using EdgeFixer
clip = core.edgefixer.Continuity(clip=clip,left=2)
# Fix bright and dark line artifacts near the border of an image using BalanceBorders
clip = edge.bbmod(c=clip,cLeft=0,cTop=0,cRight=0,cBottom=4)
# applying dehalo using YAHR
clip = dehalo.YAHR(clip)
clip = dehalo.YAHR(clip)
clip = dehalo.YAHR(clip)
# applying anti aliasing using santiag
clip = antiAliasing.santiag(c=clip, pscrn=2)
clip = core.std.AddBorders(clip=clip, left=2, right=2, top=0, bottom=2) # add borders to archive mod 8 (vsBasicVSRPPFilter) - 712x480
# adjusting color space from YUV420P8 to RGBS for vsBasicVSRPPFilter
clip = core.resize.Bicubic(clip=clip, format=vs.RGBS, matrix_in_s="470bg", range_s="limited")
# clip, new color sampling: RGBS, new bit depth: 32
# Quality enhancement using BasicVSR++
from vsbasicvsrpp import basicvsrpp as BasicVSRPP
clip = BasicVSRPP(clip=clip, model=4)
clip = core.std.Crop(clip=clip, left=2, right=2, top=0, bottom=2) # removing borders (vsBasicVSRPPFilter) -  708x478
the BasicVSR++ at the end is optional and could probably be replaced with some conventional cleaning or applied with a mask since it will remove some fine details otherwise.
with BasivVSR++
[Image: grafik.png]
without BasicVSR++:
[Image: grafik.png]

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
Simpsons - TFM vs QTGMC - by protectron - Yesterday, 18:35
RE: Simpsons - TFM vs QTGMC - by Selur - Yesterday, 18:37
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 18:54
RE: Simpsons - TFM vs QTGMC - by Selur - Yesterday, 19:13
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 19:54
RE: Simpsons - TFM vs QTGMC - by Selur - Yesterday, 20:01
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 20:10
RE: Simpsons - TFM vs QTGMC - by Selur - Yesterday, 20:13
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 20:20
RE: Simpsons - TFM vs QTGMC - by Selur - Yesterday, 21:12
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 21:34
RE: Simpsons - TFM vs QTGMC - by protectron - Yesterday, 23:55
RE: Simpsons - TFM vs QTGMC - by Selur - 4 hours ago

Forum Jump:


Users browsing this thread: 1 Guest(s)