Class ImageTracker
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to track images on image sources.
public static class ImageTracker
- Inheritance
-
objectImageTracker
Methods
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 |
|---|---|
| System.Threading.Tasks.Task<TResult><Quadrangle> | A task that represents the asynchronous tracking operation. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|
| System.NotSupportedException | The feature is not supported. |
| System.ObjectDisposedException |
|
| System.ArgumentException |
|
See Also
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 |
|---|---|
| System.Threading.Tasks.Task<TResult><Quadrangle> | A task that represents the asynchronous tracking operation. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException |
|
| System.NotSupportedException | The feature is not supported. |
| System.ObjectDisposedException |
|
| System.ArgumentException |
|