Egladil
11th January 2006, 16:02
I'm downsizing from 1920x1080 to 1280x720, the movie is telecined and I perform inverse telecine, so my script looks like that:
MPEG2Source("video.d2v", cpu=6)
AssumeBFF()
Telecide(guide=1,post=2, blend=true)
Decimate()
LanczosResize(1280,720)
Unfortunately this produces bad image, here's a magnified version:
www.levp.de/bad.png
I tried BilinearResize, Bicubic, etc... all of them produce the jagged edges.
Then I tried following: I removed the resize operation from the script, and created a second script where I have:
import("first.avs")
LanczosResize(1280,720)
This produces the correct image www.levp.de/good.png
Is this a bug, or something I must do which I'm not aware of?
regards
-lev
MPEG2Source("video.d2v", cpu=6)
AssumeBFF()
Telecide(guide=1,post=2, blend=true)
Decimate()
LanczosResize(1280,720)
Unfortunately this produces bad image, here's a magnified version:
www.levp.de/bad.png
I tried BilinearResize, Bicubic, etc... all of them produce the jagged edges.
Then I tried following: I removed the resize operation from the script, and created a second script where I have:
import("first.avs")
LanczosResize(1280,720)
This produces the correct image www.levp.de/good.png
Is this a bug, or something I must do which I'm not aware of?
regards
-lev