Log in

View Full Version : SeeSaw filter and MeGUI


theinv
9th March 2007, 18:40
Hi, I like the results of the SeeSaw filter I saw in the avisynth forum. Is it possible to use it in MeGUI? What do I need to do in order to use it in MeGUI?

nurbs
9th March 2007, 21:11
You just put all the files SeeSaw needs in the avisynth plugins directory and then add SeeSaw to your avs:

a=last
b=a.whateverdenoiseryouwanttouse()
SeeSaw(a, b, options)

JarrettH
10th March 2007, 06:24
Why not use it on playback? just wondering

theinv
10th March 2007, 06:36
You just put all the files SeeSaw needs in the avisynth plugins directory and then add SeeSaw to your avs:

a=last
b=a.whateverdenoiseryouwanttouse()
SeeSaw(a, b, options)

Thanks!

I downloaded all the required dll and scripts. But I got the following exception when I try to preview my clip in the AvsP editor with the SeeSaw filter turn on.


"CAviStreamSynth: unknown system exception - 0xc000001e at 0x0".


Here is my script. What could have caused it? (If I comment out the Seesaw() line, then it is fine)



DGDecode_mpeg2source("H:\tvs\ready\avisynth_test\mtv_xingfu15s.d2v")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\degrainmedian.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\VagueDenoiser.dll")

Import("D:\Program Files\AviSynth 2.5\functions\LimitedSharpenFaster.avs")
Import("D:\Program Files\AviSynth 2.5\functions\LimitedSharpen.avs")
Import("D:\Program Files\AviSynth 2.5\functions\SeeSaw.avs")


# VARIABLES
widthResized = 640
heightResized = 480
superSampling = 4
pixieDustLimit = 2

crop( 12, 64, -14, 0)
LeakKernelDeint(order=1,sharp=true)
Undot()

addBorders(0, 64,0,0)
Lanczos4Resize(widthResized,heightResized)


a = last
b=a.degrainmedian(mode=2).VagueDenoiser(threshold=0.8, method=1, nsteps=6, chromaT=0.8)
SeeSaw(a,b, NRlimit=6, NRlimit2=7, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)

Undot()

check
10th March 2007, 08:43
megui seems to dislike it for some reason :( I can't offer any suggestions as I don't use seesaw that often.

nurbs
10th March 2007, 12:48
Why not use it on playback? just wondering

Good denoisers are sometimes slower than realtime.
Also if you do crf encodes there are sources that end up being encoded to a (slightly) smaller filesize while looking much better than the unfiltered image.


theinv:
I don't know about the error. I've used the same filters (b=..., but maybe with different options) with seesaw in megui without problems. See if you can open it in a media player. If not you can try to remove avisynth and reinstall with only the plugins you need for this script and see if it helps. Else I am out of ideas

allajunaki
14th March 2007, 21:57
Thanks!

I downloaded all the required dll and scripts. But I got the following exception when I try to preview my clip in the AvsP editor with the SeeSaw filter turn on.


"CAviStreamSynth: unknown system exception - 0xc000001e at 0x0".


Here is my script. What could have caused it? (If I comment out the Seesaw() line, then it is fine)



DGDecode_mpeg2source("H:\tvs\ready\avisynth_test\mtv_xingfu15s.d2v")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\degrainmedian.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\VagueDenoiser.dll")

Import("D:\Program Files\AviSynth 2.5\functions\LimitedSharpenFaster.avs")
Import("D:\Program Files\AviSynth 2.5\functions\LimitedSharpen.avs")
Import("D:\Program Files\AviSynth 2.5\functions\SeeSaw.avs")


# VARIABLES
widthResized = 640
heightResized = 480
superSampling = 4
pixieDustLimit = 2

crop( 12, 64, -14, 0)
LeakKernelDeint(order=1,sharp=true)
Undot()

addBorders(0, 64,0,0)
Lanczos4Resize(widthResized,heightResized)


a = last
b=a.degrainmedian(mode=2).VagueDenoiser(threshold=0.8, method=1, nsteps=6, chromaT=0.8)
SeeSaw(a,b, NRlimit=6, NRlimit2=7, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)

Undot()


plz add masktools.dll version 1.5.8.
i hope that should work

theinv
16th March 2007, 14:44
plz add masktools.dll version 1.5.8.
i hope that should work

Thhanks!

I will give it a try.

theinv
23rd March 2007, 14:57
I forgot what I did, but SeeSaw filter is working in MeGUI now. Thanks!