PDA

View Full Version : gauss resize smearing


Adub
5th November 2005, 20:28
hello all,
I a sort of new to using Avisynth.
I am using 2.56a and when I use the filter gaussresize, and I set the sharpness to say, 75, I get a wierd kind of smeared thing on the right side of my screen.
I view this with Media Player Classic.
Any help would be appreciated.
Has anyone else seen this before?

here it is http://i34.photobucket.com/albums/d125/Merlin7777/snapshot20051102113122.jpg

Pookie
5th November 2005, 21:52
I'm guessing only, but perhaps your resize dimensions should be multiples of 16 ?

BTW, is that 'Kung Fu Hustle'? Good movie !

Adub
6th November 2005, 02:30
They were multiples of 16. it was 1024 by 768.
I forgot to mention, when i resize it without using the set sharpness function, just

gaussresize(1024,768)

there was no smearing.
It only happens when there is a sharpness setting, like

gaussresize(1025,768,75)

then I get the smeared like objects on the right.

And yes that is Kung Fu Hustle. I absolutely love that movie. it is my number one test subject.

Didée
6th November 2005, 04:21
Write gaussresize(1024,768,p=75) instead. Without explicit naming, the first 4 values after the destination height are expected to be cropping parameters.

Adub
6th November 2005, 21:00
OOOOOHHHHHH, That makes sense. Okay I have tried it and it works perfectly. Thanks man! Everything is fine now.