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