Class PersonAppearanceDetectedEventArgs
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
- API Level:
- 4
Provides data for the Detected event.
C#Copypublic class PersonAppearanceDetectedEventArgs : EventArgs
- Inheritance
Constructors
View Source
PersonAppearanceDetectedEventArgs(IEnumerable<Rectangle>, IEnumerable<Rectangle>, IEnumerable<Rectangle>)
Initializes a new instance of the PersonAppearanceDetectedEventArgs class.
Declaration
C#Copypublic PersonAppearanceDetectedEventArgs(IEnumerable<Rectangle> appeared, IEnumerable<Rectangle> disappeared, IEnumerable<Rectangle> tracked)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<Rectangle> | appeared | |
System.Collections.Generic.IEnumerable<Rectangle> | disappeared | |
System.Collections.Generic.IEnumerable<Rectangle> | tracked |
API Level: 4
Properties
View Source
AppearanceAreas
Gets a set of rectangular regions where appearances of the persons were detected.
Declaration
C#Copypublic IEnumerable<Rectangle> AppearanceAreas { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Rectangle> |
API Level: 4
View Source
DisappearanceAreas
Gets a set of rectangular regions where disappearances of the persons were detected.
Declaration
C#Copypublic IEnumerable<Rectangle> DisappearanceAreas { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Rectangle> |
API Level: 4
Declaration
C#Copypublic IEnumerable<Rectangle> TrackedAreas { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Rectangle> |