Recognize

Recognize(string, int)

Recognize Folder or File

public BatchRecognitionResult Recognize(string path, int recognitionThreshold = -100)
ParameterTypeDescription
pathStringpath to a folder or file
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

Result of batch recognition of a file or all files within folder

Exceptions

exceptioncondition
FileNotFoundExceptionIf path is not valid for folder and file

See Also


Recognize(Stream, int)

Recognize one template from stream

public BatchRecognitionResult Recognize(Stream stream, int recognitionThreshold = -100)
ParameterTypeDescription
streamStreamReadable stream with one template
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

Result of batch recognition of one template form

See Also


Recognize(IEnumerable<string>, int)

Recognize multiple files

public BatchRecognitionResult Recognize(IEnumerable<string> files, int recognitionThreshold = -100)
ParameterTypeDescription
filesIEnumerable`1Collection of full paths to files
recognitionThresholdInt32(Optional) The recognition threshold in range (0..100). Only elements filled above threshold will be counted as filled.

Return Value

Result of batch recognition of multiple forms

See Also