Something like Genuine Fractals/Perfect Resize. For upscaling by a factor of ~3:1. Is there anything that is superior to bicubic/lanzcos3?
+ Reply to Thread
Results 1 to 5 of 5
-
-
For upscaling by a factor of ~3:1.nnedi3_rpow2 is for enlarging images by powers of 2.
-
Most SR algorithms use powers of 2. You scale up 2*2 then back down to your desired final dimensions. In nnedi3_rpow2, you can use fwidth=x , fheight=y for final dimensions, and you can specify the scaling algorithm used for the downscale with cshift
-
Use:
Code:nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=width*3, fheight=height*3) # upscale 2x then resize to 3x
Code:nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=width*3, fheight=height*3) # upscale 4x then resize to 3x
What works best depends on your source though. Something like hq3x() (part of the pointsize package) works best for some older game console graphics.
https://forum.videohelp.com/threads/331048-I-updated-Super-%28c%29-it-s-giving-HORRID-r...=1#post2051159
Of course, none of this works within AviDemux.Last edited by jagabo; 16th Mar 2016 at 18:11.
Similar Threads
-
Avidemux: Is there an alternate filter to swscale / swsresize ?
By Marco Bux in forum EditingReplies: 21Last Post: 1st Feb 2016, 05:52 -
AviDemux - fade filter help !
By DonSeenu in forum Newbie / General discussionsReplies: 4Last Post: 4th Nov 2015, 02:59 -
Avidemux: filter doesn't shift audio
By MovingParts in forum EditingReplies: 13Last Post: 18th Sep 2015, 15:19 -
AviDemux: Smartest deinterlace filter
By Marco Bux in forum EditingReplies: 7Last Post: 19th Aug 2014, 15:41 -
NO subtitle filter for Avidemux 2.6?
By Valerc in forum SubtitleReplies: 2Last Post: 5th Oct 2012, 12:35