1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#![warn(missing_docs)]
//! # adder-codec-rs
//!
//! A library for transcoding to ADΔER from a variety of video sources, both framed and asynchronous
/// Tools for reconstructing frames from events
pub mod framer;
#[cfg(feature = "opencv")]
/// Tools for transcoding video sources to ADΔER
pub mod transcoder; // Have to enable the 'transcoder' feature. Requires OpenCV to be installed.
/// A module for utilities which may be common between programs
pub mod utils;
pub extern crate aedat;
extern crate core;
pub extern crate davis_edi_rs;