Log in

View Full Version : Avisynth Resizers


ar
1st May 2010, 10:11
Sup, Doom9!
You are so experienced in video editing||encoding. I'd like you to tell me wich resize filter is better for, or which artifacts should i pay attention to, when i'll try to compare some filters?

Thanks in advance.
Sorry for my english.

a451guy451
2nd May 2010, 14:58
Better for what? I use mostly lanczos and spline36.

Gser
2nd May 2010, 15:22
I use spline64.

burfadel
2nd May 2010, 20:48
'Better' is an objective term, for my needs I use spline64.

LoRd_MuldeR
2nd May 2010, 20:56
You might find this site helpful:
http://hermidownloads.craqstar.de/videoresizefiltercomparasion/

For the rest I'd recommend doing a comparison yourself with your individual footage. For example like this:

src = FooSource("File.foo")

w = src.Width * 2
h = src.Height * 2

a = src.PointResize(w,h).Subtitle("PointResize")
b = src.BiLinearResize(w,h).Subtitle("BiLinearResize")
c = src.BiCubicResize(w,h).Subtitle("BiCubicResize")
d = src.LanczosResize(w,h).Subtitle("LanczosResize")
e = src.Lanczos4Resize(w,h).Subtitle("Lanczos4Resize")
f = src.Spline16Resize(w,h).Subtitle("Spline16Resize")
g = src.Spline36Resize(w,h).Subtitle("Spline36Resize")

return Interleave(a,b,c,d,e,f,g)

ar
3rd May 2010, 13:22
Thanks a lot.

Motenai Yoda
3rd May 2010, 20:11
imho
- downsampling blackman for film and spline16/bilinear for toon
- spline36/64 to upsample
- bicubic for modulation with qtrim o qmlf/qmf

there is also a sinc resize that can be useful for downsample imho.

Jenyok
11th May 2010, 19:13
I use nnedi2, nnedi3 to enlarge video image with very good quality and slow speed. Video image multiplies by 2, 4, 6, 8 and so on...