Represents a single block, e.g. a paragraph. A block is made up of lines.

Constructors

Properties

Methods

Constructors

  • Parameters

    • Optional source: DeepPartial<Block>

    Returns Block

Properties

_type: "Block"
confidence: number

Text confidence. Range is [0-1].

lines: Line[]

List of lines.

roi: Point[]

Quad where the text was found in image coordinates. The order of the points is clockwise starting from the top left.

text: string

The recognized text.

Methods

  • Parameters

    Returns {
        _type?: "Block";
        confidence?: number;
        lines?: {
            _type?: "Line";
            confidence?: number;
            roi?: Point[];
            text?: string;
            words?: {
                _type?: "Word";
                confidence?: number;
                glyphs?: {
                    _type?: (...) | (...);
                    confidence?: (...) | (...);
                    roi?: (...) | (...);
                    text?: (...) | (...);
                    serialize?(config?): { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
                }[];
                roi?: Point[];
                text?: string;
                serialize?(config?): { readonly _type?: "Word" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly glyphs?: { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | und...;
            }[];
            serialize?(config?): { readonly _type?: "Line" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly words?: { readonly _type?: "Word" | undefined; ... 4 more ...; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }[] | undefined...;
        }[];
        roi?: Point[];
        text?: string;
        serialize?(config?): { readonly _type?: "Block" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly lines?: { readonly _type?: "Line" | undefined; ... 4 more ...; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }[] | undefine...;
    }

    • Optional Readonly _type?: "Block"
    • Optional Readonly confidence?: number

      Text confidence. Range is [0-1].

    • Optional Readonly lines?: {
          _type?: "Line";
          confidence?: number;
          roi?: Point[];
          text?: string;
          words?: {
              _type?: "Word";
              confidence?: number;
              glyphs?: {
                  _type?: (...) | (...);
                  confidence?: (...) | (...);
                  roi?: (...) | (...);
                  text?: (...) | (...);
                  serialize?(config?): { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
              }[];
              roi?: Point[];
              text?: string;
              serialize?(config?): { readonly _type?: "Word" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly glyphs?: { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | und...;
          }[];
          serialize?(config?): { readonly _type?: "Line" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly words?: { readonly _type?: "Word" | undefined; ... 4 more ...; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }[] | undefined...;
      }[]

      List of lines.

    • Optional Readonly roi?: Point[]

      Quad where the text was found in image coordinates. The order of the points is clockwise starting from the top left.

    • Optional Readonly text?: string

      The recognized text.

    • serialize?:function
      • Parameters

        Returns { readonly _type?: "Block" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; readonly lines?: { readonly _type?: "Line" | undefined; ... 4 more ...; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }[] | undefine...