kamera 0.0.2

Camera API with a reduced feature set for basic use cases and learning
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod camera;
pub use camera::*;

#[cfg(target_os = "macos")]
pub(crate) mod mac_avf;

#[cfg(target_os = "windows")]
pub(crate) mod win_mf;

#[cfg(target_os = "linux")]
pub(crate) mod linux_v4l2;