In Selur Hybrid, I see that one can use the regular resizer at Crop Resize > Base > Picture Resize. There is another place where one can override that resizer tool at Filtering > Vapoursynth > Frame > Resize.
I generate scripts for each option to better understand. Looking at the generated script I see that this is the first option...
...and this is the second option:# Resizing using 10 - bicubic spline
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=1440, h=1054, interlaced=False, interlacedd=False) # resolution 1440x1054 before YUV422P8 after YUV422P16
I read this about different resizing options at this forum:# resizing using NNEDI3CL
# current: 704x468 target: 1440x1054 -> pow: 4
clip = edi_rpow2.nnedi3cl_rpow2(clip=clip, rfactor=4, nsize=3, nns=4) # 2816x1872
My question is what is the relationship between Bilinear/Spline64/Lanczos (on the one side) and NNEDI3CL (on the other)? Are they equivalent? Or is NNEDI3CL a different type of thing, which is why it appears in a different area of Hybrid alongside those AI models like VSGAN? And most importantly, which one is most recommended for home video style footage (not animation)?Regarding which algorithm to use for resizing: Bilinear is the least sharp. Spline64() is sharper. Lanczos is the sharpest. If your source is very sharp you may want to avoid the sharper resizers as they will produce oversharpening halos and aliasing artifacts. Bilinear will reduce oversharpening halos a bit. Use whatever is appropriate for your video.
+ Reply to Thread
Results 1 to 2 of 2
-
-
Resize > Base > Picture Resize
Filtering > Vapoursynth > Frame > Resize.
Filtering > Avisynth > Frame > Resize.
And most importantly, which one is most recommended for home video style footage (not animation)?users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
RealCUGAN in hybrid vs Waifu 2x Extension Gui (slow in hybrid)
By Platos in forum Newbie / General discussionsReplies: 1Last Post: 28th Apr 2023, 05:43 -
avspmod - use variables across tabs
By maudit in forum EditingReplies: 14Last Post: 18th Sep 2022, 19:54 -
New to HYBRID - set in/out?
By Jan Tokki in forum Newbie / General discussionsReplies: 5Last Post: 26th Jul 2022, 03:53 -
Hybrid error
By radusound in forum Newbie / General discussionsReplies: 40Last Post: 21st Mar 2021, 10:02 -
PotPlayer 3 Qs: load exported settings; get rid of "Scenes(...)" tabs; etc
By fabiospark in forum Software PlayingReplies: 0Last Post: 1st Nov 2020, 11:36