| Printable Version of Topic
Click here to view this topic in its original format |
| Unofficial VirtualDub Support Forums > Advanced Video Processing > Default Resize (bicubic A=-0.75) |
| Posted by: davexnet Mar 30 2011, 07:16 PM |
| Hello all, the Avisynth "resize" info states that : "With b = 0 and c = 0.75 the filter is exactly the same as VirtualDub's "precise bicubic," However resizing something in AVisynth such as Video = Video.BicubicResize(708,320,b=0,c=0.5) or Video = Video.BicubicResize(708,320,b=0,c=0.75) I find both of the Avisynth statements above give a sharper result than the default Virtualdub option. What is Virtualdubs a=-0.75 really equivalent to? (Is that really -0.75 ie. a negative value ?) Thanks for any info. |
| Posted by: IanB Mar 31 2011, 12:18 AM | ||||||
From Virtuldub resample_kernels.cpp
From Avisynth resample_functions.cpp
Given A= -0.75 you plug it into the VDub spline coefficients then solve for the matching Avs coefficients.
However what may be different is the span (taps) of the filter kernel. |