Class PersonAppearanceDetector
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to detect person appearance changes on image sources.
C#Copypublic class PersonAppearanceDetector : SurveillanceEngine, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View Source
PersonAppearanceDetector()
Initializes a new instance of the PersonAppearanceDetector class.
Declaration
C#Copypublic PersonAppearanceDetector()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | The required features are not supported. |
Methods
View Source
AddSource(SurveillanceSource, PersonAppearanceDetectionConfiguration)
Adds SurveillanceSource with the provided PersonAppearanceDetectionConfiguration.
Declaration
C#Copypublic void AddSource(SurveillanceSource source, PersonAppearanceDetectionConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
SurveillanceSource | source | The source used for recognition. |
PersonAppearanceDetectionConfiguration | config | The config for the |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ObjectDisposedException | The PersonAppearanceDetector has already been disposed of. |
Declaration
C#Copypublic void AddSource(SurveillanceSource source)
Parameters
Type | Name | Description |
---|---|---|
SurveillanceSource | source | The source used for recognition. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.ObjectDisposedException | The PersonAppearanceDetector has already been disposed of. |
Events
Declaration
C#Copypublic event EventHandler<PersonAppearanceDetectedEventArgs> Detected
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><PersonAppearanceDetectedEventArgs> |
Remarks
The event handler will be executed on an internal thread.
Implements
System.IDisposable