Recognize
Contents
[
Hide
]Recognize(string, int)
Recognizes file
public RecognitionResult Recognize(string filePath, int recognitionThreshold = -100)
Parameter | Type | Description |
---|---|---|
filePath | String | The path of the file to recognize |
recognitionThreshold | Int32 | (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
- class RecognitionResult
- class TemplateProcessor
- namespace Aspose.OMR.Api
- assembly Aspose.OMR
Recognize(string[], int)
Recognize multiple files as a single multipage file
public RecognitionResult Recognize(string[] filePaths, int recognitionThreshold = -100)
Parameter | Type | Description |
---|---|---|
filePaths | String[] | The path of the files to recognize |
recognitionThreshold | Int32 | (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
- class RecognitionResult
- class TemplateProcessor
- namespace Aspose.OMR.Api
- assembly Aspose.OMR
Recognize(Stream, int)
Recognizing file from stream
public RecognitionResult Recognize(Stream stream, int recognitionThreshold = -100)
Parameter | Type | Description |
---|---|---|
stream | Stream | Stream of the file. |
recognitionThreshold | Int32 | (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
- class RecognitionResult
- class TemplateProcessor
- namespace Aspose.OMR.Api
- assembly Aspose.OMR
Recognize(Stream[], int)
Recognizing collection of files from streams
public RecognitionResult Recognize(Stream[] streams, int recognitionThreshold = -100)
Parameter | Type | Description |
---|---|---|
streams | Stream[] | Collection of file streams. |
recognitionThreshold | Int32 | (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
- class RecognitionResult
- class TemplateProcessor
- namespace Aspose.OMR.Api
- assembly Aspose.OMR