ffmpeg去噪算法

本文介绍了两种视频修复技术——BM3D和NLMeans滤波器的使用方法及其参数调整。BM3D通过设置sigma、block、bstep和group等参数实现降噪;NLMeans则涉及h、range和temporal等参数,适用于不同噪声级别的视频修复。这两个滤波器在ffmpeg中应用,可以显著提升旧视频或噪声视频的质量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

bm3d

ffmpeg -y -threads 16 -i input.mp4 -filter_complex "bm3d=sigma=5:block=4:bstep=2:group=1:estim=basic" output.mp4

ffmpeg -y -threads 16 -s 1920x1080 -i 5frame_1920x1080.yuv -filter_complex "bm3d=sigma=10:block=4:bstep=2:group=1:estim=basic" out.yuv

'sigma'
Set denoising strength. Default value is 1. Allowed range is from 0 to 999.9
http://underpop.online.fr/f/ffmpeg/help/bm3d.htm.gz

注意:ffmpeg需要4.3.1版本

nlm

ffmpeg -s $wx$h -pix_fmt yuv420p -i $input -vf nlmeans=h=2:range=3:temporal=1 $output

-vf nlmeans=h=2:range=3:temporal=1 为参数调节


官网
The filter is named nlmeans and has the following parameters:

h - averaging weight decay parameter (larger values give smoother videos).
range - spatial search range (default=3), should be odd number.
temporal - number of frames to include into search (default=2).
patchsize - pixel context region width (default=7, little need to change), should be odd number.

The default values (h=8, range=3, temporal=2) are a good starting point for the restoration of very noisy video (old VHS tapes).You may also try 10;5;3 for really noisy inputs or 6;3;1 for good quality inputs.

It is also interesting to note that one can simply apply the filter on interlaced material. The algorithm itself is robust enough to handle this nicely without artifacts.
https://www.dirk-farin.net/projects/nlmeans/index.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

WX Chen

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值