Feature Extractors
Face Detection
Detect, extract, and identify faces in images and videos
The Face Detection extractor identifies human faces in images and videos, extracts facial features, and optionally matches them against known identities.
Overview
The Face Detection feature extractor analyzes visual content to locate human faces, extract facial embeddings, and optionally identify individuals based on pre-enrolled face data. It supports applications such as identity verification, person tracking, and face-based content search.
Required Inputs
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
media_url | string | Yes | - | URL pointing to image or video file. Supported formats: JPG, PNG, MP4, MOV |
min_face_size | integer | No | 40 | Minimum face size in pixels to detect |
detection_threshold | float | No | 0.7 | Confidence threshold for face detection (0.0-1.0) |
tracking | boolean | No | true | Whether to track faces across video frames |
Configurations
Detection Modes
The extractor supports different detection modes based on use case requirements:
Mode | Description | Best For |
---|---|---|
standard | Balanced accuracy and performance | General face detection |
high-accuracy | Prioritizes detection accuracy | Identity verification |
high-performance | Prioritizes processing speed | Real-time applications |
Configuration Examples
Standard
High Accuracy
High Performance
Attribute Extraction
Option | Type | Default | Description |
---|---|---|---|
extract_attributes | boolean | true | Extract facial attributes (age, gender, emotion) |
extract_landmarks | boolean | false | Extract facial landmarks (eyes, nose, mouth positions) |
generate_embedding | boolean | true | Generate face embedding for identity matching |
crop_faces | boolean | true | Generate cropped face images |
Configuration Examples
Sample
Processing Flow
Output Schema
This feature extractor will output as features
in the feature store.
Was this page helpful?