Face Search (ID-based)

The Face Search model performs search and matching based on registered user IDs and face embeddings.

Feature Summary

  • ID-based registration and lookup
  • Similarity-based Top-K candidate retrieval
  • Threshold-based match decision

Input / Output

Item Details
Input Query face image + target ID group
Output Matched ID, similarity score, Top-K candidates
Recommended Environment GPU + vector index recommended for large-scale search

Demo Library Download Options

Option Description Download
Option A: Python SDK Registration and search API included <python-sdk-download-url>
Option B: REST Sample ID registration/search endpoint examples <rest-sample-download-url>
Option C: Docker Demo Demo environment with index included <docker-demo-download-url>

Quick Start (Python SDK)

from safeai_demo import Client

client = Client(api_key="<your-demo-license-key>")
client.register_face(user_id="person-001", image_path="person-001.jpg")
result = client.search_face(image_path="query.jpg", top_k=5)
print(result)

License