DocumentRecognitionSettings

DocumentRecognitionSettings(int, int)

Initializes a new instance of the DocumentRecognitionSettings class with short set of properties.

public DocumentRecognitionSettings(int startPage = 0, int pagesNumber = 1)
ParameterTypeDescription
startPageInt32Set the first page for recognition. 0 by default.
pagesNumberInt32Set the number of pages for recognition multipage pdf file.

See Also


DocumentRecognitionSettings(int, int, Language, bool, bool, int)

Initializes a new instance of the DocumentRecognitionSettings class with full set of properties.

public DocumentRecognitionSettings(int startPage, int pagesNumber, 
    Language language = Language.None, bool detectAreas = true, bool autoSkew = true, 
    int threshold = 0)
ParameterTypeDescription
startPageInt32Set the first page for recognition. 0 by default.
pagesNumberInt32Set the number of pages for recognition multipage pdf file.
languageLanguageLanguage used for OCR.
detectAreasBooleanEnable automatic text areas detection.
autoSkewBooleanEnable automatic image skew correction.
thresholdInt32Custom image binarization threshold.

See Also