Stages
Face Search
Retrieve documents containing specific faces based on similarity matching
The Face Search retriever stage identifies and retrieves documents containing faces that match a specified reference image or face embedding.
Overview
Face Search uses facial recognition technology to find documents containing specific individuals. It works by comparing face embeddings from a query image or stored reference against faces detected in the document collection. This enables powerful person-specific content retrieval across images and videos.
Required Inputs
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
face_reference | string/object | Yes | - | Either a URL to a reference image or a face embedding vector |
k | integer | No | 10 | Number of matching faces to retrieve |
feature_store_id | string | Yes | - | ID of the feature store containing face embeddings |
similarity_threshold | float | No | 0.6 | Minimum similarity score for a match (0.0-1.0) |
include_faces | boolean | No | true | Whether to include face thumbnails in results |
Configurations
Reference Types
Reference Type | Description | Use Case |
---|---|---|
image_url | URL pointing to an image containing a face | When you have a reference photo |
face_embedding | Pre-computed face embedding vector | When face is already enrolled |
person_id | ID of a person in a taxonomy | When person is in a people taxonomy |
document_id | ID of a document with a face to match | When reference is in the collection |
Match Criteria
Criterion | Description |
---|---|
similarity_threshold | Minimum similarity score (0.0-1.0) for faces to be considered a match |
max_faces_per_document | Maximum number of matched faces to return from a single document |
min_face_size | Minimum size of face (as % of image) to consider |
pose_tolerance | Tolerance for face angle/pose differences |
Configuration Examples
Basic Face Search
Advanced Configuration
Advanced Options
Option | Type | Default | Description |
---|---|---|---|
collections | array | [] | Specific collections to search (empty = all) |
pose_tolerance | string | "medium" | Tolerance for pose variation ("strict" , "medium" , "relaxed" ) |
age_filter | object | null | Filter faces by estimated age range |
gender_filter | string | null | Filter faces by detected gender |
Processing Flow
Output Schema
Was this page helpful?