tjbot-ce - v3.0.0
    Preparing search index...

    Interface SeeConfig

    Settings for the camera and computer vision.

    interface SeeConfig {
        backend?: SeeBackendConfig;
        cameraResolution?: [number, number];
        captureTimeout?: number;
        horizontalFlip?: boolean;
        verticalFlip?: boolean;
        zeroShutterLag?: boolean;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    cameraResolution?: [number, number]

    Requested capture resolution as [width, height].

    captureTimeout?: number

    Camera capture timeout in milliseconds.

    horizontalFlip?: boolean

    Flips captured frames horizontally.

    verticalFlip?: boolean

    Flips captured frames vertically.

    zeroShutterLag?: boolean

    Enables zero-shutter-lag capture when supported.