Class ImageRecognizer

    Definition

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

    Provides the ability to recognize images on image sources.

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

    Methods

    View Source

    RecognizeAsync(MediaVisionSource, ImageObject[], ImageRecognitionConfiguration)

    Recognizes the given image objects on the source image.

    Declaration
    [Obsolete("Deprecated since API12. Will be removed in API15.")]
    public static Task<IEnumerable<ImageRecognitionResult>> RecognizeAsync(MediaVisionSource source, ImageObject[] imageObjects, ImageRecognitionConfiguration config)
    Parameters
    Type Name Description
    MediaVisionSource source

    The source image on which image objects will be recognized.

    ImageObject[] imageObjects

    The array of image objects which will be processed as targets of recognition.

    ImageRecognitionConfiguration config

    The configuration used for recognition. This value can be null.

    Returns
    Type Description
    System.Threading.Tasks.Task<TResult><System.Collections.Generic.IEnumerable<T><ImageRecognitionResult>>

    A task that represents the asynchronous recognition operation.

    Exceptions
    Type Condition
    System.ArgumentNullException

    source is null.
    -or-
    imageObjects is null.
    -or-
    imageObjects contains null elements.

    System.ArgumentException

    imageObjects has no elements.(The length is zero.)

    System.NotSupportedException

    The feature is not supported.

    System.ObjectDisposedException

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

    View Source

    RecognizeAsync(MediaVisionSource, ImageObject[])

    Recognizes the given image objects on the source image.

    Declaration
    [Obsolete("Deprecated since API12. Will be removed in API15.")]
    public static Task<IEnumerable<ImageRecognitionResult>> RecognizeAsync(MediaVisionSource source, ImageObject[] imageObjects)
    Parameters
    Type Name Description
    MediaVisionSource source

    The source image on which image objects will be recognized.

    ImageObject[] imageObjects

    The array of image objects which will be processed as targets of recognition.

    Returns
    Type Description
    System.Threading.Tasks.Task<TResult><System.Collections.Generic.IEnumerable<T><ImageRecognitionResult>>

    A task that represents the asynchronous recognition operation.

    Exceptions
    Type Condition
    System.ArgumentNullException

    source is null.
    -or-
    imageObjects is null.
    -or-
    imageObjects contains null reference.

    System.ArgumentException

    imageObjects has no elements.(The length is zero.)

    System.NotSupportedException

    The feature is not supported.

    System.ObjectDisposedException

    source has already been disposed of.

    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX