eye/
lib.rs

1//! Eye is a cross platform camera capture and control library.
2//!
3//! This crate provides a high-level API on top of the low-level parts like `eye-hal`.
4//!
5//! Additional documentation can currently also be found in the
6//! [README.md file which is most easily viewed on github](https://github.com/raymanfx/eye-rs/blob/master/README.md).
7//!
8//! [Jump forward to crate content](#reexports)
9//!
10//! # Overview
11//!
12//! The device abstraction provided in this crate builds on top of a PlatformDevice acquired
13//! through the `Context` struct of the `eye-hal` subcrate. It performs transparent frame format
14//! conversion (e.g. JPEG -> RGB decoding) by leveraging the `colorconvert` module.
15
16pub mod colorconvert;
17
18pub use eye_hal as hal;