Class ImageTracker

    Definition

    Namespace:
    Tizen.Multimedia.Vision
    Assembly:
    Tizen.Multimedia.Vision.dll

    Provides the ability to track images on image sources.

    [Obsolete("Deprecated since API12. Will be removed in API15.")]
    public static class ImageTracker
    Inheritance
    object
    ImageTracker

    Methods

    View Source

    TrackAsync(MediaVisionSource, ImageTrackingModel, ImageTrackingConfiguration)

    Tracks the given image tracking model on the current frame and ImageTrackingConfiguration.

    Declaration
    [Obsolete("Deprecated since API12. Will be removed in API15.")]
    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

    source is null.
    -or-
    trackingModel is null.

    System.NotSupportedException

    The feature is not supported.

    System.ObjectDisposedException

    source has already been disposed of.
    -or-
    trackingModel has already been disposed of.
    -or-
    config has already been disposed of.

    System.ArgumentException

    trackingModel has no target.

    See Also
    SetTarget(ImageObject)
    View Source

    TrackAsync(MediaVisionSource, ImageTrackingModel)

    Tracks the given image tracking model on the current frame.

    Declaration
    [Obsolete("Deprecated since API12. Will be removed in API15.")]
    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

    source is null.
    -or-
    trackingModel is null.

    System.NotSupportedException

    The feature is not supported.

    System.ObjectDisposedException

    source has already been disposed of.
    -or-
    trackingModel has already been disposed of.

    System.ArgumentException

    trackingModel has no target.

    See Also
    SetTarget(ImageObject)
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX