-
So I was watching a 3840x1600 movie on my 3840x2160 monitor, and noticed I had two shaders active: ortho (vert/horiz) downscaling (bicubic) I have no idea where they're from, scale/dscale/cscale are mpy mpv.conf: https://github.com/marat569/mpv.conf/blob/main/mpv.conf so two questions:
When I googled the effect, I found only github issue with no solid solution Also shoutout to Kasper93 -- my dude helps out with every post and issue |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
dup #11841 |
Beta Was this translation helpful? Give feedback.
-
b-spline (bicubic) is a smoothing filter and its only applied to the luma plane for feature extraction. it has no effect on chroma/rgb scaling and it's hard-coded, so you can't change it even if you wanted to. the only thing it does is map out the high-frequency and low-frequency information on the luma plane. most feature extraction algorithms typically use either nearest neighbor, bilinear or b-spline. and out of those three b-spline is smoother and higher quality for feature extraction because it preserves source details while also not producing any unnatural jagged edges. |
Beta Was this translation helpful? Give feedback.
dup #11841