#![cfg_attr(not(feature = "opencv"), allow(unused))]
#[cfg(feature = "opencv")]
mod conversion;
#[cfg(feature = "opencv")]
pub mod image_encoder;
#[cfg(feature = "opencv")]
pub mod image_ops;
#[cfg(feature = "opencv")]
pub mod mat_view;
#[cfg(feature = "opencv")]
pub mod video_capture;
#[cfg(feature = "opencv")]
pub use image_encoder::OpenCvImageEncoder;
#[cfg(feature = "opencv")]
pub use image_ops::OpenCvImageOps;
#[cfg(feature = "opencv")]
pub use mat_view::{slice_to_mat, OpenCvMatView};
#[cfg(feature = "opencv")]
pub use video_capture::{OpenCvVideoCapture, OpenCvVideoStream};