Class PersonAppearanceDetector

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 detect person appearance changes on image sources.

C#
Copy
public class PersonAppearanceDetector : SurveillanceEngine
Inheritance
PersonAppearanceDetector

Constructors

View Source

PersonAppearanceDetector()

Initializes a new instance of the PersonAppearanceDetector class.

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

Methods

View Source

AddSource(SurveillanceSource)

Adds SurveillanceSource.

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

The source used for recognition.

API Level: 4
View Source

AddSource(SurveillanceSource, PersonAppearanceDetectionConfiguration)

Adds SurveillanceSource with the provided PersonAppearanceDetectionConfiguration.

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

The source used for recognition.

PersonAppearanceDetectionConfiguration config

The config for the source. This value can be null.

API Level: 4

Events

View Source

Detected

Occurs when the any appearance changes detected.

Declaration
C#
Copy
public event EventHandler<PersonAppearanceDetectedEventArgs> Detected
Event Type
Type Description
EventHandler<PersonAppearanceDetectedEventArgs>
Remarks

The event handler will be executed on an internal thread.

API Level: 4

Extension Methods

See Also