capacitor-plugin-scanbot-sdk
    Preparing search index...

    Class Line

    Represents a single line. A line is made up of words.

    Index

    Constructors

    Properties

    Methods

    Constructors

    • Parameters

      • Optionalsource: DeepPartial<Line>

      Returns Line

    Properties

    _type: "Line"
    confidence: number

    Text confidence. Range is [0-1].

    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.

    words: Word[]

    List of words.

    Methods

    • Parameters

      Returns {
          _type?: "Line";
          confidence?: number;
          roi?: Point[];
          serialize?: (
              config?: ToJsonConfiguration,
          ) => { 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...;
          text?: string;
          words?: {
              _type?: "Word";
              confidence?: number;
              glyphs?: {
                  _type?: "Glyph";
                  confidence?: number;
                  roi?: Point[];
                  serialize?: (
                      config?: ToJsonConfiguration,
                  ) => { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
                  text?: string;
              }[];
              roi?: Point[];
              serialize?: (
                  config?: ToJsonConfiguration,
              ) => { 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...;
              text?: string;
          }[];
      }

      • Optional Readonly_type?: "Line"
      • Optional Readonlyconfidence?: number

        Text confidence. Range is [0-1].

      • Optional Readonlyroi?: Point[]

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

      • Optionalserialize?: (
            config?: ToJsonConfiguration,
        ) => { 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...
      • Optional Readonlytext?: string

        The recognized text.

      • Optional Readonlywords?: {
            _type?: "Word";
            confidence?: number;
            glyphs?: {
                _type?: "Glyph";
                confidence?: number;
                roi?: Point[];
                serialize?: (
                    config?: ToJsonConfiguration,
                ) => { readonly _type?: "Glyph" | undefined; readonly text?: string | undefined; readonly confidence?: number | undefined; readonly roi?: Point[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
                text?: string;
            }[];
            roi?: Point[];
            serialize?: (
                config?: ToJsonConfiguration,
            ) => { 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...;
            text?: string;
        }[]

        List of words.