Embedding Biometric Pipeline

Complete pipeline for fingerprint enrollment, embedding extraction, storage, and matching with audit trails.

Overview

This project focuses on making biometric matching robust and reproducible by serializing embeddings and applying configurable thresholds and audit logging.

Key components

Example snippet (matcher)

def cosine(a, b):
    a = a / np.linalg.norm(a)
    b = b / np.linalg.norm(b)
    return float(np.dot(a, b))

Deployment notes

Back to Projects