Package com.geniusscansdk.ocr
Class OCREngine
- java.lang.Object
-
- com.geniusscansdk.ocr.OCREngine
-
public abstract class OCREngine extends java.lang.Object
Recognizes text in an image
-
-
Constructor Summary
Constructors Constructor Description OCREngine()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static OCREngine
create(OCREngineConfiguration configuration, com.geniusscansdk.core.Logger logger, OCREngineProgressListener progressListener)
Create an OCR engineabstract OCREngineResult
recognizeText(OCREngineInput input)
Process the input image to extract text and layout information
-
-
-
Method Detail
-
recognizeText
public abstract OCREngineResult recognizeText(OCREngineInput input)
Process the input image to extract text and layout information
-
create
public static OCREngine create(OCREngineConfiguration configuration, com.geniusscansdk.core.Logger logger, OCREngineProgressListener progressListener)
Create an OCR engine- Parameters:
configuration
- An OCR engine configurationprogressListener
- A listener that will receive updates about the OCR progress
-
-