av-denoise 0.1.2

Fast and efficient video denoising using accelerated nlmeans.
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

pub mod accelerate;
mod denoiser;
pub mod device;
#[doc(hidden)]
pub mod nlmeans;
pub mod sniff;

pub use denoiser::{Denoiser, DenoiserError, DenoiserOptions, DenoisingMode, NlmTuning};
pub use device::Device;
pub use nlmeans::{ChannelMode, MotionCompensationMode, PrefilterMode};