Class ImageTracker
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 4
Provides the ability to track images on image sources.
public static class ImageTracker
- Inheritance
-
ImageTracker
Methods
View SourceTrackAsync(MediaVisionSource, ImageTrackingModel)
Tracks the given image tracking model on the current frame.
Declaration
public static Task<Quadrangle> TrackAsync(MediaVisionSource source, ImageTrackingModel trackingModel)
Parameters
Type | Name | Description |
---|---|---|
MediaVisionSource | source | The current image of sequence where the image tracking model will be tracked. |
ImageTrackingModel | trackingModel | The image tracking model which processed as target of tracking. |
Returns
Type | Description |
---|---|
Task<Quadrangle> | A task that represents the asynchronous tracking operation. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
NotSupportedException | The feature is not supported. |
ObjectDisposedException |
|
ArgumentException |
|
See Also
API Level: 4
Feature: http://tizen.org/feature/vision.image_recognition
View SourceTrackAsync(MediaVisionSource, ImageTrackingModel, ImageTrackingConfiguration)
Tracks the given image tracking model on the current frame and ImageTrackingConfiguration.
Declaration
public static Task<Quadrangle> TrackAsync(MediaVisionSource source, ImageTrackingModel trackingModel, ImageTrackingConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
MediaVisionSource | source | The current image of sequence where the image tracking model will be tracked. |
ImageTrackingModel | trackingModel | The image tracking model which processed as target of tracking. |
ImageTrackingConfiguration | config | The configuration used for tracking. This value can be null. |
Returns
Type | Description |
---|---|
Task<Quadrangle> | A task that represents the asynchronous tracking operation. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
|
NotSupportedException | The feature is not supported. |
ObjectDisposedException |
|
ArgumentException |
|