supervision-js
    Preparing search index...

    Interface BaseBoxCornerStyleOptions

    interface BaseBoxCornerStyleOptions {
        length?: DetectionStyleValue<number, AnnotationStyleContext>;
        stroke?: DetectionStyleValue<
            Partial<OpenStrokeStyle>
            | null,
            AnnotationStyleContext,
        >;
        shouldRender?: DetectionStylePredicate<AnnotationStyleContext>;
    }
    Index
    length?: DetectionStyleValue<number, AnnotationStyleContext>

    Visible length of each corner segment in screen pixels. The renderer converts it to media space so the decoration stays legible while zooming.

    stroke?: DetectionStyleValue<
        Partial<OpenStrokeStyle>
        | null,
        AnnotationStyleContext,
    >

    Open-path stroke used by each of the four corners.

    shouldRender?: DetectionStylePredicate<AnnotationStyleContext>

    Return false to skip a detection.