PDA

View Full Version : Help with SeeSaw Plugin


nrahim
18th September 2006, 22:12
Guys there was a movie which i custom made a avs script for and used SeeSaw for... the sharpness was a bit too much.. so can any one suggest values dat would take the sharpness down a noch.. here is the script and the sample-->> http://www.sendspace.com/file/eqs0f1(dunt worry abt the speeding of the video)

AVS Script

LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TDeint.dll")
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\FluxSmooth.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\awarpsharp.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\msharpen.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\degrainmedian.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\colormatrix.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DenoiseSharpen.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
DGDecode_mpeg2source("C:\Rang De Basanti\dgindex\VTS_02_1.d2v",cpu=4,info=3)
import("C:\Program Files\AviSynth 2.5\scripts\SeeSaw.avs")
tfm().tdecimate()
ColorMatrix()

crop( 0, 56, -2, -62)

LanczosResize(640,272) # Lanczos (Sharp)
undot()#Minimal Noise

a= last

b=a.DenoiseSharpen()


SeeSaw(a,b, NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)

Pookie
19th September 2006, 01:30
Your source looks like it was oversharpened, then overdenoised. SeeSaw or Limitedsharpen will only amplify this :(

Just use AddGrain or Mplayernoise to create the illusion of sharpness.

Try SeeSaw and LSF on your next project.