supervision-js
    Preparing search index...

    Interface CompositeDetectionFrameSourceEntry

    interface CompositeDetectionFrameSourceEntry {
        id: string;
        frames?: readonly DetectionFrame[];
        source?: DetectionFrameSource;
        order?: number;
        sync?: DetectionFrameSelectionOptions;
        requiredForCoverage?: boolean;
    }
    Index
    id: string

    Renderer-neutral source identity copied into composed detections.

    frames?: readonly DetectionFrame[]

    Static detection frames for this source.

    Caller-owned frame source for this source.

    order?: number

    Lower order sources are composed first. Later detections render on top.

    Detection-frame selection options for this source.

    requiredForCoverage?: boolean

    When false, the composed source's waitForRange resolves without waiting for this entry. Defaults to true.