Hi cats please can you tell me the more faster resizer? quality is not important
+ Reply to Thread
Results 1 to 7 of 7
-
-
PointResize is the fastest but quality is horrible. Bilinear is better but still fast (though a bit blurry). Bicubic is good quality/speed compromise, esp. when downsizing.
-
Hi,
I know you dont mind quality, and sneaker noticed it is horrible. If really it can be called as resizer.
Check this page to imagine it. http://hermidownloads.craqstar.de/videoresizefiltercomparasion/
Bernix -
Note that all of the images on that page were the result of eight successive resizes, upscaling by 32 pixels each time. For example:
Code:# 256x256 source image PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) PointResize(width+32, height+32) # 512x512 after resizing
-
Hi,
so you are saying that it is meaningless comparasion ?
Thank you
A single resize from 256x256 to 512x512 with PointResize() would simply double the width and height of each pixel.
But am I right, that works when resizing by 2x, 4x, etc. Multiplying by some fraction will look horrible.
BernixLast edited by Bernix; 3rd Oct 2017 at 09:55.
-
I use PointResize() as a special purpose filter. It's great for examining individual pixels, zooming by 4x, 8x, 16x... so you see each pixel of the source as a big square block. Or when you need to losslessly upscale by 2x and the downscale back to 1x (when deblocking interlaced video, for example). I pointed it out earlier simply because the image at the web site was especially bad. But all the resizers generate different types of artifacts with incremental zooming than with s single zoom.
Sharper isn't always better. If a video is already sharp a sharpening resizer like Lancoz3 will generate oversharpening halos. Those halos may be further exacerbated if the video is scaled again while viewing (modern TVs usually use sharpening resizers to upscale). Also, any block artifacts in your source will be accentuated by a sharpening resizer. For downscaling, bilinear (AviSynth's BilinearResize() or VirtualDub's Precise Bilinear) is the most natural. It looks most like what you would see with your own eyes viewing the original image from twice as far away. I usually test a few resizers on the video I'm scaling, and use whatever looks best to me.
I'm not sure the use of that particular zone plate is a good way to test resizing algorithms.
Similar Threads
-
AviSynth+ running 6 times faster one time without explanation?
By mleise in forum RestorationReplies: 4Last Post: 14th Sep 2017, 14:34 -
Best Resize And Sharpen Filters In Avisynth
By anime12345 in forum Video ConversionReplies: 4Last Post: 24th Sep 2015, 08:55 -
Quality Of AviSynth's Internal Parity Value For TIVTC-TFM(Order=-1)?
By LouieChuckyMerry in forum Newbie / General discussionsReplies: 12Last Post: 10th Jun 2015, 08:59 -
avisynth: when I resize where is the interlaced flag?
By marcorocchini in forum Newbie / General discussionsReplies: 28Last Post: 24th Sep 2014, 04:55 -
Avisynth resize at low bitrate
By pepijnd1 in forum Video ConversionReplies: 1Last Post: 27th Jun 2013, 21:22