Face Detection
The Face Detection model detects face locations in images or video frames.
Feature Summary
- Single/multiple face detection
- Bounding box coordinate output
- Confidence score-based filtering
| Item | Details |
| Input | JPG/PNG images, MP4 frames |
| Output | Face box (x, y, w, h), score |
| Recommended Environment | CPU supported; GPU recommended for real-time |
Demo Library Download Options
| Option | Description | Download |
| Option A: Python SDK | Fastest integration, API wrapper included | <python-sdk-download-url> |
| Option B: REST Sample | Language-agnostic HTTP example | <rest-sample-download-url> |
| Option C: Docker Demo | Fixed runtime, reproducible demo | <docker-demo-download-url> |
Quick Start (Python SDK)
pip install <safeai-face-detection-demo>
from safeai_demo import Client
client = Client(api_key="<your-demo-license-key>")
result = client.face_detection(image_path="sample.jpg")
print(result)
License