Log in

View Full Version : AAA creating artifacts?


EroKaos
13th July 2007, 16:39
As the title says, for some reason AAA is creating some weird tiny spots all over the place (Not on all frames). Not sure if one can notice them when the video is in playback but it is noticeable. I tried reducing the parameters but the most I can reduce them while still having the same quality makes the the video very blurred.

Sample. Notice the spots on the face.
Original = http://img111.imageshack.us/my.php?image=originalli1.png
AAA = http://img111.imageshack.us/my.php?image=aaakm5.png

Here is my script:
function Preset0(clip c) {
#Name: Default
c
ConvertToYV12()
a=last
SeeSaw(a, NRlimit=3, NRlimit2=4, Sstr=1, Slimit=5, Spower=5, Sdamplo=6, Szp=16)
AAA()
ConvertToYUY2()
PixieDust(5)
ConvertToYV12()
return last
}

I'm not sure about the order they are suppose to go but once I switch PixieDust to last it got rid of some of the spots. BTW is it possible to use PixieDust in combination with SeeSaw? Like b=a.PixieDust(5), but since SeeSaw works on YV12 and Pixiedust works on YUY2 I couldn't combine them and I'm not sure if it's alright to omit b in the parameters.

Thanks

DarkT
14th July 2007, 02:13
Here's what I'd do if I were you:

1)get AVSP
2)disable all filters and start enabling them untill you see the dots - that way you can get closer to the root of the problem - since to me it sounds liek you're not sure that it's AAA which causes it...

EroKaos
14th July 2007, 03:30
It's AAA. I disabled all the filters (only 3 inlcuding AAA). Everything is fine when I enable SeeSaw and PixieDust but once I enable AAA I get the spots.

foxyshadis
14th July 2007, 06:04
You can try replacing AAA() with this:
EEDI2().Spline36Resize(width,height).turnleft().EEDI2().Spline36Resize(height,width).turnright()
Packaged in a function if you want. It's effectively the equivalent, using eedi2 instead of sangnom.

EroKaos
14th July 2007, 17:33
Hmm... Thanks alot foxyshadis.