![]() |
[HELP] Resizing Question - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: [HELP] Resizing Question (/thread-1929.html) |
Resizing Question - Lyra - 05.08.2021 I was hoping to downscale using one of the vapoursynth resizers under Vapoursynth->Frame->Resize, but it doesn't seem to do anything when I have the resize checkboxed checked under the Crop/Resize tab. How are they meant to work independently of the Crop/Resize options? There's no option to select a resize resolution if that checkbox is unchecked Edit: It seems it's only fmtconv spline 144 that does nothing and downscales using the crop/resize selection, but NNEDI3 with spline 144 selected as the downscaler results in the same resolution as the source, now I'm even more confused. RE: Resizing Question - Selur - 05.08.2021 a. output resolution is always determined by "Crop/Resize->Base->Picture Resize" so unless the resolution here differs from the crop-resolution, the outpu resolution will be the same as the crop-resolution. Resizers under "Crop/Resize->Base->Picture Resize" are mapped to FFmpeg/Avisynth/Vapoursynth base resizers. b. "Vapoursynth->Frame->Resize"
Cu Selur RE: Resizing Question - Lyra - 05.08.2021 Further testing confirms it, it just so happens that Spline 144 looks exactly like Lanczos. Thanks for clearing that up ![]() RE: Resizing Question - Lyra - 06.08.2021 (05.08.2021, 05:35)Selur Wrote: a. output resolution is always determined by "Crop/Resize->Base->Picture Resize" so unless the resolution here differs from the crop-resolution, the outpu resolution will be the same as the crop-resolution. While I'm already on the topic of downsampling, would you consider adding SSIM downsampling to the list of resizers? It comes as part of muvsfunc so it's already in hybrid. It's a perceptually based downsampler like DPID, but better in my opinion. Here's the paper about it, it's fairly easy reading for something like this and has lots of examples of it. https://cgl.ethz.ch/Downloads/Publications/Papers/2015/Ozt15b/Ozt15b.pdf RE: Resizing Question - Selur - 06.08.2021 First impression is that it is unneccessary slow since it only offers support for normal nnedi3 and not znedi3 and/or nnedi3cl. I'll look at it over the weekend. Cu Selur Ps.: created an issue entry about it over at https://github.com/WolframRhodium/muvsfunc/issues/31 RE: Resizing Question - Selur - 06.08.2021 Nice, WolframRhodium added a way to use a different NNEDI3. ![]() Cu Selur RE: Resizing Question - Selur - 06.08.2021 Sadly it doesn't work. :/ RE: Resizing Question - Selur - 06.08.2021 Okay, my mistake I assumed that SSIM_downscale war using nnedi3 since it was using nnedi3_resample, but it doesn't. Cu Selur RE: Resizing Question - Selur - 06.08.2021 Created a dev version which supports SSIM_downscale (it's called 'SSIMD' in Hybrid). Send you a link via pm. Cu Selur RE: Resizing Question - Lyra - 07.08.2021 (06.08.2021, 19:55)Selur Wrote: Created a dev version which supports SSIM_downscale (it's called 'SSIMD' in Hybrid). Thanks for the addition, you sure work fast. ![]() |