Randall
25th October 2007, 02:02
Hi I'm trying to clean up as much noise as possible from the Seinfeld Season 1 DVDs. There must be a good balance between denoising and preserving/restoring sharpness, but I haven't found it yet. I need a video processing expert on this board (hopefully has had experience with this same source material) to make this look as beautiful as possible. Thanks for the help. Here is my script so far.
# LOAD THE PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3DFilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainSSE3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\mt_masktools.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avs")
# VIDEO SOURCE
mpeg2source("H:\SeinfeldDVD\Season1\01 The Seinfeld Chronicles\chronicles.d2v")
# INVERSE TELECLINE (29.97 FPS -> 23.97 FPS)
Telecide(guide=1).Decimate()
# DENOISE (frequency domain)
FFT3DFilter(bt=4, plane=4, bw=32, bh=32)
# DENOISE AGAIN (still too much noise)
RemoveGrain(mode=17)
# SHARPEN (compensate for denoisers smoothing effects)
LimitedSharpenFaster(strength=60)
# CROP THE IMAGE (Left, Top, -Right, -Bottom)
crop(8,8,-8,-8):thanks:
# LOAD THE PLUGINS
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\decomb.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\FFT3DFilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\RemoveGrainSSE3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\mt_masktools.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpenFaster.avs")
# VIDEO SOURCE
mpeg2source("H:\SeinfeldDVD\Season1\01 The Seinfeld Chronicles\chronicles.d2v")
# INVERSE TELECLINE (29.97 FPS -> 23.97 FPS)
Telecide(guide=1).Decimate()
# DENOISE (frequency domain)
FFT3DFilter(bt=4, plane=4, bw=32, bh=32)
# DENOISE AGAIN (still too much noise)
RemoveGrain(mode=17)
# SHARPEN (compensate for denoisers smoothing effects)
LimitedSharpenFaster(strength=60)
# CROP THE IMAGE (Left, Top, -Right, -Bottom)
crop(8,8,-8,-8):thanks: