supervision-js
    Preparing search index...

    Interface EllipseStyle

    Style contract of the ellipse annotation renderer.

    Resolves per detection to the ellipse drawn for it, or undefined to skip the detection. Ellipses are presentation only: they are never pickable and never become editable annotations.

    interface EllipseStyle {
        resolve(
            detection: Detection,
            context: AnnotationStyleContext,
        ): EllipseDrawInstruction | undefined;
    }
    Index