Recognize

Recognize(string, int)

Recognizes file

public RecognitionResult Recognize(string filePath, int recognitionThreshold = -100)
ParameterTypeDescription
filePathStringThe path of the file to recognize
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

The recognition result

See Also


Recognize(string[], int)

Recognize multiple files as a single multipage file

public RecognitionResult Recognize(string[] filePaths, int recognitionThreshold = -100)
ParameterTypeDescription
filePathsString[]The path of the files to recognize
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

The recognition result

See Also


Recognize(Stream, int)

Recognizing file from stream

public RecognitionResult Recognize(Stream stream, int recognitionThreshold = -100)
ParameterTypeDescription
streamStreamStream of the file.
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

The recognition result

See Also


Recognize(Stream[], int)

Recognizing collection of files from streams

public RecognitionResult Recognize(Stream[] streams, int recognitionThreshold = -100)
ParameterTypeDescription
streamsStream[]Collection of file streams.
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

The recognition result

See Also