Deep Trekker BRIDGE API - v1.0.3
    Preparing search index...

    Type Alias OcleaDptz

    Digital pan/tilt/zoom controls for the Oclea camera

    type OcleaDptz = {
        pan?: { direction: { x?: Rate; y?: Rate } };
        roi?: {
            totalHeight: number;
            totalWidth: number;
            xOffset: number;
            yOffset: number;
        };
        zoom?: ZoomControl;
    }
    Index

    Properties

    Properties

    pan?: { direction: { x?: Rate; y?: Rate } }

    Digital image panning

    Type declaration

    • direction: { x?: Rate; y?: Rate }

      Direction to pan

      • Optionalx?: Rate

        Panning on the x-axis (left or right)

      • Optionaly?: Rate

        Panning on the y-axis (up or down)

    roi?: {
        totalHeight: number;
        totalWidth: number;
        xOffset: number;
        yOffset: number;
    }

    Region of interest (the region within the frame that's currently being viewed - after having zoomed in and changed pan)

    Type declaration

    • totalHeight: number

      Total height of area that can be panned to (panning might be limited to a slightly smaller portion of the frame to avoid showing warp on the edges)

    • totalWidth: number

      Total width of area that can be panned to (panning might be limited to a slightly smaller portion of the frame to avoid showing warp on the edges)

    • xOffset: number

      Offset of the region of interest from the left edge of the frame

    • yOffset: number

      Offset of the region of interest from the top edge of the frame

    Digital zoom control