@openhps/opencv
    Preparing search index...

    Interface ImageTransformOptions

    interface ImageTransformOptions {
        dst?: Point2[];
        frameFilter?: (frame: DataFrame) => boolean;
        height?: number;
        name?: string;
        src: Point2[];
        uid?: string;
        width?: number;
    }

    Hierarchy (View Summary)

    Index
    dst?: Point2[]
    frameFilter?: (frame: DataFrame) => boolean

    Frame filter to specify what frames are processed by this node

    height?: number
    name?: string

    User friendly name of the node Used for querying a node by its name.

    src: Point2[]
    uid?: string

    Manually set the unique identifier of the node

    width?: number