Log in

View Full Version : DeScratch and RemoveNoiseMC


bmnot
29th January 2009, 00:53
Hello Everyone, I've recently been redoing some old footage using RemoveNoiseMC and was very please with the results, the only thing that I am displeased with my video about now is the amount of verticle lines it has, and I feel the descratch plugin would be perfect for removing them, but my problem is, where would I implement the plugin in the process.

Here's my AVS Script


SetMemoryMax(640)

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\mt_masktools.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\MaskTools.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Deen.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\mvtools.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RemoveDirtSSE2.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RemoveGrainSSE2.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RepairSSE2.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\VagueDenoiser.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Deblock.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\LimitedSupport_09Jan06B.dll")

Import("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\SeeSaw.avsi")
Import("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\LimitedSharpenFaster.avsi")
Import("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\RemoveNoiseMC.avsi")
Import("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\lq_filter.avsi")


# SOURCE
mpeg2source("C:\Users\Derek\Desktop\TheLastManOnEarth.d2v")

# TRIM
#trim(startframe,endframe)

# IVTC
Telecide(order=1,guide=1).Decimate()

# CROPPING
crop(0,60,720,360)

# SUBTITLES
#VobSub("FileName")

# RESIZING
Lanczos4Resize(720,480)

# DENOISING: thanks to RemoveNoiseMC
RemoveNoiseMC(rdlimit=18,rgrain=3,denoise=14)
VagueDenoiser(threshold=0.6, nsteps=6, chromaT=0.6, percent=75)
deen("a3d",rad=3,thrY=3,thrUV=5,min=0.25,tthY=2,tthUV=3,scd=6)
LimitedSharpenFaster(Smode=4,strength=24,overshoot=1,wide=false,ss_x=1.3,ss_y=1.3)


The topic for RemoveNoiseMC is:

http://forum.doom9.org/showthread.php?t=110078

If you need it.

I'd really appreciate your help. Thanks!

Adub
29th January 2009, 02:22
Do you have an example clip of your source?