oximedia-scene 0.1.0

Scene understanding and AI-powered video analysis for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Object, face, logo, and text detection.
//!
//! This module provides various detection algorithms using patent-free methods:
//!
//! - **Object detection**: HOG-based detection for common objects
//! - **Face detection**: Haar cascade-based face detection
//! - **Logo detection**: Template matching and feature-based detection
//! - **Text detection**: Text region detection using connected components

pub mod face;
pub mod logo;
pub mod object;
pub mod text;

pub use face::{FaceDetection, FaceDetector};
pub use logo::{LogoDetection, LogoDetector};
pub use object::{ObjectDetection, ObjectDetector, ObjectType};
pub use text::{TextDetection, TextDetector};