Interface FaceIrisConfig

Iris part of face configuration

interface FaceIrisConfig {
    enabled: boolean;
    modelPath: string;
    scale: number;
    skipFrames: number;
    skipTime: number;
}

Hierarchy (view full)

Properties

enabled: boolean

is module enabled?

modelPath: string

path to model json file (relative to modelBasePath

scale: number

how much should iris box be enlarged over the min/max iris coordinates

skipFrames: number

how many max frames to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

skipTime: number

how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only