Hello,
I went through a few posts as I wanted to archive some of my old cartoons.
Now I've been reading that to get a better quality an upscale and then a downscale should be performed.
I do not understand how this improves quality.
Can someone please explain what is the logic behind this process?
Thank you in advance.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Generally you can process pixels in more refined way - for example you can increase pixel 4 times using Nearest-neighbor filter then apply some filtering (like Median) and finally downscale product with Lanczos - by increasing image, processing, downscale you can get results in sub-pixel space.
-
I guess the upscaling is to be done with an EDI (Edge Directed Interpolation) filter, which is tuned to enhance straight lines in a sharp style without oversharpening (ringing artifacts). Good for cartoons, this will enhance the line drawing appearance and keep the flat color areas between the lines smooth and flat. Applying the same to general video content may not always look just as great...
Using AviSynth to process the video, you may see the NNEDI3 plugin being used with the function nnedi3_rpow2 which can be used to upscale video by powers of 2 (2, 4, 8, 16 ... times the original width and height). -
If you upscale&filter&downscale-combos ifyou know that the filtering you are doing in the middle:
a. really profits from it
b. still work as intended (for example deblocking filter might not properly detect blocking)
c. don't themselves also increase and decrease the resolution to do "super sampling"
-> the assumption that it's always a quality improving step to upscale and later downscale is wrong (especially if the up-/down-scaling additionally introduces artifacts)
That said: the whole thing is usually done in one script. (quite a bit of filter scripts already do it themselves)
My recommendation would be: if you are new to Avisynth and video filtering in general do not mess with this.
If you know your video/image processing algorithms and convolution, fourier transform and general signal processing are nothing 'new' or 'unknown' to you and you know what a filter does it might be helpful.
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
Similar Threads
-
Best Way To Downscale 1080p 30fps Sports Video to 720p for Bluray?
By AndersonJames in forum RestorationReplies: 10Last Post: 18th Jun 2020, 13:25 -
What is the best way to upscale videos.
By Felow in forum Video ConversionReplies: 15Last Post: 9th Jan 2020, 15:00 -
How do I downscale a 4K video to 1080p Bluray quality?
By SomeoneNeutral in forum Authoring (Blu-ray)Replies: 3Last Post: 18th Sep 2019, 18:13 -
How could you upscale SD to HD in Virtual Dub?
By nicksilverstein in forum Newbie / General discussionsReplies: 3Last Post: 24th Feb 2019, 04:19 -
How to downscale MP4 without losing quality?
By Master Tape in forum Video ConversionReplies: 9Last Post: 8th Jun 2018, 15:32