adder_codec_rs/
lib.rs

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