vapoursynth-bm3d

BM3D denoising filter plugin for VapourSynth video processing

brewmacoslinux
Try with needOr install directly
Source

About

BM3D denoising filter for VapourSynth

Commands

vapoursynth-bm3d

Examples

Apply BM3D denoising to a video file with default settings$ vspipe -c y4m script.vpy - | ffmpeg -i pipe: output.mkv
Use BM3D in a VapourSynth script with custom sigma parameter$ import vapoursynth as vs; clip = vs.core.bm3d.VAggregate(clip, sigma=10.0)
Process video with BM3D and specify radius for patch matching$ import vapoursynth as vs; denoised = vs.core.bm3d.VBasic(clip, sigma=5.0, radius=7)