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

    Variable ScanbotOcrEngineConst

    ScanbotOcrEngine: {
        recognizeOnDocument(
            params: { configuration?: OcrConfiguration; documentUuid: string },
        ): Promise<PerformOcrResult>;
        recognizeOnImages(
            params: { configuration?: OcrConfiguration; images: ImageInput[] },
        ): Promise<PerformOcrResult>;
    }

    Entry point for all OCR engine features.

    Type Declaration

    • recognizeOnDocument: function
      • Performs OCR on the provided document with the specified configuration.

        Parameters

        • params: { configuration?: OcrConfiguration; documentUuid: string }
          • Optionalconfiguration?: OcrConfiguration

            The configuration for OCR processing.

          • documentUuid: string

            The Uuid of the document to be used for OCR processing.

        Returns Promise<PerformOcrResult>

        • The result of the OCR processing.
    • recognizeOnImages: function