-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
求问能否像 mpv 一样 色度 和 明度 分开缩放,额 #241
Comments
视频的输入是 yuv 格式,因此可以提供明度通道。Magpie 的输入是 rgb 格式,所以所有效果的输入都是 rgb,想操作亮度通道的话可以自己转换 float get_luma(float3 rgb) {
return dot(float3(0.299, 0.587, 0.114), rgb);
} 这方面 @hooke007 应该更清楚 |
大大,这个给咱不会用啊,是不是改配置文件 ScaleModels.json 就能用啊, |
这是给着色器作者用的,一般用户的话不需要关心这些 |
... 游戏-magpie 是rgb全程输入输出,不需要chroma upscale |
见过大大, |
这个需求太奇怪了....为什么要引入完全多余的计算,这些东西对游戏来讲完全没有意义啊 |
只在亮度分量上升频的技术挺常见的,人眼对亮度最敏感,因此可以有效节省算力。ACNet 和 FSRCNNX 都是这样实现的,以前的Anime4K 也是这样,但现在改成 rgb 了 |
Expected behavior 预期的功能
https://github.com/mpv-player/mpv
如果实现不了就算了,拜谢大大
╮( ̄▽ ̄)╭
Alternative behavior (optional) 近似的功能(可选)
No response
The text was updated successfully, but these errors were encountered: