1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![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;

/// 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 adder_codec_core;

#[cfg(feature = "opencv")]
pub extern crate davis_edi_rs;

#[cfg(feature = "open-cv")]
pub use davis_edi_rs::aedat;