Class ImageTrackingModel
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Represents the image tracking model interface.
C#
Copy
public class ImageTrackingModel : IDisposable
- Inheritance
-
objectImage
Tracking Model
- Implements
-
System.
IDisposable
Constructors
Declaration
C#
Copy
public ImageTrackingModel()
Exceptions
Type | Condition |
---|---|
System. |
The feature is not supported. |
ImageTrackingModel(string)
Initializes a new instance of the Image
Declaration
C#
Copy
public ImageTrackingModel(string modelPath)
Parameters
Type | Name | Description |
---|---|---|
string | modelPath | Path to the model to load. |
Remarks
Model saved by Save(string) can be loaded.
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
The feature is not supported. |
System. |
No permission to access the specified file. |
See Also
Methods
Declaration
C#
Copy
public void Dispose()
Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | true to release both managed and unmanaged resources; otherwise false to release only unmanaged resources. |
Declaration
C#
Copy
protected ~ImageTrackingModel()
Refresh()
Refreshes the state of image tracking model.
Clears the moving history and change state to undetected. It is usually called each time before tracking is started
for the new sequence of sources, which is not the direct continuation of the sequence for which tracking has been performed before.
Tracking algorithm will try to find image by itself.
Declaration
C#
Copy
public void Refresh()
Exceptions
Type | Condition |
---|---|
System. |
The Image |
Declaration
C#
Copy
public void Save(string path)
Parameters
Type | Name | Description |
---|---|---|
string | path | Path to the file to save the model. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
No permission to write to the specified path. |
System. |
The Image |
System. |
The directory for |
SetTarget(ImageObject)
Sets the target of the image tracking model.
Sets the image object which will be tracked by using tracking functionality with this tracking model.
Declaration
C#
Copy
public void SetTarget(ImageObject imageObject)
Parameters
Type | Name | Description |
---|---|---|
Image |
imageObject | Image object which will be set as the target for tracking. |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
The Image |
System. |
Internal error.(Since API level 10) |