Interface FaceEmbedding

Face embedding vector with optional detection metadata.

interface FaceEmbedding {
    vector: number[];
    boundingBox?: FaceBoundingBox;
    confidence?: number;
}

Properties

vector: number[]

High-dimensional vector representing facial features.

boundingBox?: FaceBoundingBox

Bounding box of the detected face in the source image.

confidence?: number

Detection confidence score in [0, 1].