supervision-js
    Preparing search index...

    Interface AnnotationEditingEngineOptions

    interface AnnotationEditingEngineOptions {
        capturePointer?: (pointerId: number) => void;
        onCancel?: () => void;
        onCommit?: (detection: Detection, previous: Detection | null) => void;
        onFastTranslate?: (id: string | number, dx: number, dy: number) => void;
        onPreview?: (preview: Detection | null) => void;
        onStateChange?: (state: AnnotationEditingState) => void;
        releasePointer?: (pointerId: number) => void;
        viewportScale?: () => number;
    }
    Index
    capturePointer?: (pointerId: number) => void
    onCancel?: () => void
    onCommit?: (detection: Detection, previous: Detection | null) => void
    onFastTranslate?: (id: string | number, dx: number, dy: number) => void
    onPreview?: (preview: Detection | null) => void
    onStateChange?: (state: AnnotationEditingState) => void
    releasePointer?: (pointerId: number) => void
    viewportScale?: () => number