supervision-js
    Preparing search index...

    Interface DetectionCoordinateSpace

    Pixel space that a detection frame's vector geometry was produced in.

    Producers that infer on a resized or transcoded copy of the media can attach this to a DetectionFrame instead of scaling geometry themselves. Masks are unaffected: they already carry their own intrinsic width/height.

    interface DetectionCoordinateSpace {
        width: number;
        height: number;
    }
    Index
    width: number

    Source frame width in pixels. Must be greater than 0.

    height: number

    Source frame height in pixels. Must be greater than 0.