mirror of
https://github.com/l1npengtul/nokhwa.git
synced 2026-07-04 02:27:26 +00:00
73 lines
2.3 KiB
Rust
73 lines
2.3 KiB
Rust
#![deny(clippy::pedantic)]
|
|
#![warn(clippy::all)]
|
|
#![allow(clippy::module_name_repetitions)]
|
|
/*
|
|
* Copyright 2022 l1npengtul <l1npengtul@protonmail.com> / The Nokhwa Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#![cfg_attr(feature = "test-fail-warning", deny(warnings))]
|
|
#![cfg_attr(feature = "docs-features", feature(doc_cfg))]
|
|
//! # nokhwa
|
|
//! A Simple-to-use, cross-platform Rust Webcam Capture Library
|
|
//!
|
|
//! The raw backends can be found in [`backends`](backends)
|
|
//!
|
|
//! The [`Camera`] struct is what you will likely use.
|
|
//!
|
|
//! The recommended default feature to enable is `input-native`. The library will not work without
|
|
//! at least one `input-*` feature enabled.
|
|
//!
|
|
//! Please read the README.md for more.
|
|
|
|
/// Raw access to each of Nokhwa's backends.
|
|
pub mod backends;
|
|
mod camera;
|
|
mod init;
|
|
/// A camera that uses native browser APIs meant for WASM applications.
|
|
mod platform_resolver;
|
|
|
|
#[cfg(feature = "output-async")]
|
|
#[cfg_attr(feature = "docs-features", doc(cfg(feature = "output-async")))]
|
|
pub mod async_camera;
|
|
mod query;
|
|
/// A camera that runs in a different thread and can call your code based on callbacks.
|
|
#[cfg(feature = "output-threaded")]
|
|
#[cfg_attr(feature = "docs-features", doc(cfg(feature = "output-threaded")))]
|
|
pub mod threaded;
|
|
|
|
pub use camera::Camera;
|
|
pub use init::*;
|
|
pub use nokhwa_core::buffer::Buffer;
|
|
pub use nokhwa_core::error::NokhwaError;
|
|
pub use query::*;
|
|
#[cfg(feature = "output-threaded")]
|
|
#[cfg_attr(feature = "docs-features", doc(cfg(feature = "output-threaded")))]
|
|
pub use threaded::CallbackCamera;
|
|
|
|
pub mod utils {
|
|
pub use nokhwa_core::types::*;
|
|
}
|
|
|
|
pub mod error {
|
|
pub use nokhwa_core::error::NokhwaError;
|
|
}
|
|
|
|
pub mod camera_traits {
|
|
pub use nokhwa_core::traits::*;
|
|
}
|
|
|
|
pub mod buffer {
|
|
pub use nokhwa_core::buffer::*;
|
|
}
|