Hello videohelp members i'm new here.
how to remove scratches and white color lines and spots in video
here is the screenshot example.
already tested with some of the avisynth filter plugins and scripts like descratch,deflicker,RemoveDirt,RemoveDirtMC...
please help me to clear all those demages in video..
here is the script i mostly used.. achieved good denoised result..
DGDecode_mpeg2source("filepath/filename.d2v", info=3)
ConvertToYV12()
ColorMatrix(hints=true, interlaced=true, threads=0)
#deinterlacing
#croping
#resizing Lanczos4Resize() or Spline36Resize()
super = MSuper()
backward_vectors = MAnalyse(super, isb = true)
forward_vectors = MAnalyse(super, isb = false)
forward_compensation = MFlow(super, forward_vectors, thSCD1=500) # or use MCompensate
backward_compensation = MFlow(super, backward_vectors, thSCD1=500)
interleave(forward_compensation, last, backward_compensation)
Checkmate()
VagueDenoiser(threshold=1.2, method=1, nsteps=6, chromaT=0.8)
selectevery(3,1)
LSFMod(Strength=80, Smode=5)
Undot()
GradFunkMirror()
#Grainfactory3(1,1,1)
YlevelsS(0,1.0,255,0,255,false)
+ Reply to Thread
Results 1 to 9 of 9
-
Last edited by arun28; 24th Feb 2013 at 06:21.
-
RemoveSpots() will remove many spots that appear in only one frame.
https://forum.videohelp.com/threads/308778-Best-way-to-mask-dropouts-on-old-Betamax-rec...=1#post1972576 -
-
RemoveSpots() works good. it's removes the most of the spots but it's missed some spots.
any idea about using multible times.. for full spot removable.?
RemoveSpots().RemoveSpots() ..?
it can't removes moving areas.. -
You can call RemoveSpots() multiple times but you'll start noticing image degradation. Most of the spots that RemoveSpots() misses are in moving parts of the picture. It only works well on still parts of the frame. There is a motion compensated version around that might work better. Look for RemoveSpotsMC().
-
-
You can try using something like ReplaceFramesMC(), also know as RX(), to create a new frame based on the two surrounding frames. Or that in conjunction with manually created masks. Or copying bits from other frames manually.
Also, make sure you video doesn't have duplicate frames. Remove spots won't work if the same spot appears in two successive frames.Last edited by jagabo; 24th Feb 2013 at 09:17.
Similar Threads
-
Shopping for device to buff DVDs and remove scratches - HELP!
By will7370 in forum RestorationReplies: 10Last Post: 26th Dec 2012, 01:35 -
Device to remove scratches from DVDs -- Suggestions?
By will7370 in forum Newbie / General discussionsReplies: 1Last Post: 23rd Dec 2012, 15:37 -
Remove white spots?
By jwbrasil2 in forum RestorationReplies: 4Last Post: 27th Nov 2011, 01:23 -
help with avisynth script to remove scratches or drop outs
By LSchafroth in forum RestorationReplies: 11Last Post: 1st Jan 2011, 12:09 -
DVD Scratches HELP
By Goonies in forum Authoring (DVD)Replies: 1Last Post: 27th Jan 2010, 13:46