Nikos
25th June 2005, 13:52
I know that BicubicResize is better for magnifying and
BilinearResize is better for shrinking.
I want to resize from 640x360 (1:1) to 352x576 (1/2 DVD).
What's the preferable choice.
1.
AVISource("C:\movies\MyMovie.avi)
BicubicResize (640,432,1/3,1/3) # magnify vert. res. only
BilinearResize(352,432) # shrink hor. res. only
AddBorders(0,72,0,72)
2.
AVISource("C:\movies\MyMovie.avi)
BilinearResize(352,432) # shrink hor. res. only
BicubicResize(640,432,1/3,1/3) # magnify vert. res. only
AddBorders(0,72,0,72)
3.
AVISource("C:\movies\MyMovie.avi)
BicubicResize(352,432,1/3,1/3)
AddBorders(0,72,0,72)
4.
AVISource("C:\movies\MyMovie.avi)
BilinearResize(352,432)
AddBorders(0,72,0,72)
BilinearResize is better for shrinking.
I want to resize from 640x360 (1:1) to 352x576 (1/2 DVD).
What's the preferable choice.
1.
AVISource("C:\movies\MyMovie.avi)
BicubicResize (640,432,1/3,1/3) # magnify vert. res. only
BilinearResize(352,432) # shrink hor. res. only
AddBorders(0,72,0,72)
2.
AVISource("C:\movies\MyMovie.avi)
BilinearResize(352,432) # shrink hor. res. only
BicubicResize(640,432,1/3,1/3) # magnify vert. res. only
AddBorders(0,72,0,72)
3.
AVISource("C:\movies\MyMovie.avi)
BicubicResize(352,432,1/3,1/3)
AddBorders(0,72,0,72)
4.
AVISource("C:\movies\MyMovie.avi)
BilinearResize(352,432)
AddBorders(0,72,0,72)