Structure containing recognized symbol text and bounds.

Constructors

  • Parameters

    • Optional source: DeepPartial<SymbolBox>

    Returns SymbolBox

Properties

boundingRect: Rectangle

Bounding rectangle of the recognized symbol.

recognitionConfidence: number

Confidence of the recognition.

symbol: string

Recognized symbol text.

Methods

  • Parameters

    Returns {
        boundingRect?: Rectangle;
        recognitionConfidence?: number;
        symbol?: string;
        serialize?(config?): { readonly symbol?: string | undefined; readonly boundingRect?: Rectangle | undefined; readonly recognitionConfidence?: number | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
    }

    • Optional Readonly boundingRect?: Rectangle

      Bounding rectangle of the recognized symbol.

    • Optional Readonly recognitionConfidence?: number

      Confidence of the recognition.

    • Optional Readonly symbol?: string

      Recognized symbol text.

    • serialize?:function
      • Parameters

        Returns { readonly symbol?: string | undefined; readonly boundingRect?: Rectangle | undefined; readonly recognitionConfidence?: number | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }