RecognizeImage

RecognizeImage(string, int)

Recognizes image

public RecognitionResult RecognizeImage(string imagePath, int recognitionThreshold = -100)
ParameterTypeDescription
imagePathStringThe path to the image 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


RecognizeImage(MemoryStream, int)

Recognizing image from memory stream

public RecognitionResult RecognizeImage(MemoryStream stream, int recognitionThreshold = -100)
ParameterTypeDescription
streamMemoryStreamMemory stream of image.
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