Class PersonRecognizer

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll
API Level:
4
Feature:
http://tizen.org/feature/vision.face_recognitionhttp://tizen.org/feature/vision.image_recognition

Provides the ability to recognize person on image sources.

C#
Copy
public class PersonRecognizer : SurveillanceEngine
Inheritance
PersonRecognizer

Constructors

View Source

PersonRecognizer()

Initializes a new instance of the PersonRecognizer class.

Declaration
C#
Copy
public PersonRecognizer()
API Level: 4

Methods

View Source

AddSource(SurveillanceSource, PersonRecognitionConfiguration)

Adds SurveillanceSource with the provided PersonRecognitionConfiguration.

Declaration
C#
Copy
public void AddSource(SurveillanceSource source, PersonRecognitionConfiguration config)
Parameters
Type Name Description
SurveillanceSource source

The source used for recognition.

PersonRecognitionConfiguration config

The config for the source.

API Level: 4

Events

View Source

Recognized

Occurs when a person recognized.

Declaration
C#
Copy
public event EventHandler<PersonRecognizedEventArgs> Recognized
Event Type
Type Description
EventHandler<PersonRecognizedEventArgs>
Remarks

The event handler will be executed on an internal thread.

API Level: 4

Extension Methods

See Also