Hi.
I've been looking for a way to remove combing in a interlaced source that has been converted to progressive and scaled. I would like to know if would it be possible by any way to decomb interlaced artifacts in this example attached.
I tried to do it using Topaz AI and tried some scripts I found for AVIsynth, but no success.
Lot of thanks in advance.
+ Reply to Thread
Results 1 to 8 of 8
-
-
The best thing to do would be to edit the original interlaced video correctly if you still have access to it.
-
Yes, but I don't have access to the original video. If so, I would not have to deal with this
-
The type of resizing used in that video loses too much of the interlacing information to get anything close to a proper deinterlacing. You can reduce most of the wavy artifacts but at the cost of losing a lot of sharpness in non-moving areas.
Code:LWLibavVideoSource("vid.mov") Spline36Resize(1920,96) QTGMC() nnedi3_rpow2(16, cshift="SPline36Resize", fwidth=1920, fheight=1080)
Last edited by jagabo; 20th Jun 2024 at 11:51.
-
Argh,.. height 96, that is hard, not many details left with that.
users currently on my ignore list: deadrats, Stears555, marcorocchini -
-
Here my attempt, it's only partially fixed, but still has way more details:
Code:BicubicResize(480,272) c1= selectevery(2,0).FrameRateConverter(preset="normal", blendratio=70) c2= selectevery(2,1).FrameRateConverter(preset="normal", blendratio=70) merge (trim(c1,1,0), c2, 0.5) mt=false tr=2 blksize=8 overlap=4 thSAD=400 thSAD2=300 search=4 dct=0 limit=10 addborders(8,8,8,8) sc_full = MSuper(hpad=0,vpad=0, mt=mt) sc_ds = BicubicResize (width/2,height/2).MSuper(hpad=0,vpad=0, mt=mt) mv_ds = sc_ds.MAnalyse (multi=true, delta=tr, blksize=blksize, overlap=overlap, search=search, dct=dct, mt=mt) mv_dsr = sc_ds.MRecalculate (mv_ds, tr=tr, blksize=blksize/2, overlap=blksize/4, thSAD=150, dct=dct, mt=mt) mv = mv_dsr.MScaleVect(2) MDegrainN (sc_full, mv, tr, thSAD=thSAD, thSAD2=thSAD2, limit=limit, mt=mt) crop(8,8,-8,-8) #return last pf=AWarpSharpDering(debug=0, diffthresh=150, lumathresh=70) em = pf.mt_edge (mode="prewitt", thY1=25, thY2=30, chroma="-128") .mt_inflate.mt_inflate .converttoY .fastblur(2) #return em Overlay(last, pf, mask=em)
-
Similar Threads
-
Weird combing in progressive source
By embis2003 in forum RestorationReplies: 38Last Post: 25th Feb 2024, 14:38 -
Combing Artifacts in Progressive Source
By InessaKarapetyan in forum RestorationReplies: 1Last Post: 23rd Dec 2023, 11:53 -
VirtualDub adding combing artifacts when capturing video, anyway to remove?
By Master Tape in forum RestorationReplies: 11Last Post: 21st Mar 2023, 14:31 -
Fix combing in an already interlaced video.
By dabbdubb in forum Video ConversionReplies: 6Last Post: 3rd Feb 2021, 17:52 -
Getting rid of combing in a progressive clip
By ZetaStax in forum Video ConversionReplies: 10Last Post: 29th Jun 2019, 03:46