av-denoise-core 0.4.0

Core kernels and types for av-denoise (Do not use directly)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Synthetic clips with known motion, and the scores that compare a
//! motion field against them.
//!
//! This exists for the `mc_accuracy` bench. It is not a stable
//! interface.

#![doc(hidden)]

mod score;
mod synth;

pub use score::{KindScore, Score, score};
pub use synth::{Clip, MotionClass, Still, synthesise};