iMaGe
22nd December 2001, 21:43
taken from the avisynth scripting language reference guide:
----------------
----------------
BilinearResize(target-width,target-height,clip)
BilinearResize(source-left,source-top,source-width,source-height,target-width,target-height,clip)
The BilinearResize filter rescales the input video frames to an arbitrary new resolution. If you supply the optional source arguments, the result is the same as if you had applied Crop with those arguments to the clip before BilinearResize (except faster).
----------------
BicubicResize([b,c,]target-width,target-height,clip)
BicubicResize([b,c,]source-left,source-top,source-width,source-height,target-width,target-height,clip)
----------------
----------------
the key here... is that we can eliminate the crop(w,x,y,z) command, and get a speed boost at the same time. i guess thewef already knew this, and just doing crop for the sake of readability ...
what do you think? is the speed boost that the text is saying negligible?
----------------
----------------
BilinearResize(target-width,target-height,clip)
BilinearResize(source-left,source-top,source-width,source-height,target-width,target-height,clip)
The BilinearResize filter rescales the input video frames to an arbitrary new resolution. If you supply the optional source arguments, the result is the same as if you had applied Crop with those arguments to the clip before BilinearResize (except faster).
----------------
BicubicResize([b,c,]target-width,target-height,clip)
BicubicResize([b,c,]source-left,source-top,source-width,source-height,target-width,target-height,clip)
----------------
----------------
the key here... is that we can eliminate the crop(w,x,y,z) command, and get a speed boost at the same time. i guess thewef already knew this, and just doing crop for the sake of readability ...
what do you think? is the speed boost that the text is saying negligible?