Class ImageRecognizer
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to recognize images on image sources.
public static class ImageRecognizer
- Inheritance
-
objectImage
Recognizer
Methods
View SourceRecognizeAsync(MediaVisionSource, ImageObject[], ImageRecognitionConfiguration)
Recognizes the given image objects on the source image.
Declaration
public static Task<IEnumerable<ImageRecognitionResult>> RecognizeAsync(MediaVisionSource source, ImageObject[] imageObjects, ImageRecognitionConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The source image on which image objects will be recognized. |
Image |
imageObjects | The array of image objects which will be processed as targets of recognition. |
Image |
config | The configuration used for recognition. This value can be null. |
Returns
Type | Description |
---|---|
System. |
A task that represents the asynchronous recognition operation. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
The feature is not supported. |
System. |
|
RecognizeAsync(MediaVisionSource, ImageObject[])
Recognizes the given image objects on the source image.
Declaration
public static Task<IEnumerable<ImageRecognitionResult>> RecognizeAsync(MediaVisionSource source, ImageObject[] imageObjects)
Parameters
Type | Name | Description |
---|---|---|
Media |
source | The source image on which image objects will be recognized. |
Image |
imageObjects | The array of image objects which will be processed as targets of recognition. |
Returns
Type | Description |
---|---|
System. |
A task that represents the asynchronous recognition operation. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
The feature is not supported. |
System. |
|