Class PersonAppearanceDetectedEventArgs

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll

Provides data for the Detected event.

C#
Copy
[Obsolete("Deprecated since API12. Will be removed in API15.")] public class PersonAppearanceDetectedEventArgs : EventArgs
Inheritance
object
System.EventArgs
PersonAppearanceDetectedEventArgs

Constructors

View Source

PersonAppearanceDetectedEventArgs(IEnumerable<Rectangle>, IEnumerable<Rectangle>, IEnumerable<Rectangle>)

Initializes a new instance of the PersonAppearanceDetectedEventArgs class.

Declaration
C#
Copy
[Obsolete("Deprecated since API12. Will be removed in API15.")] 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 Source

AppearanceAreas

Gets a set of rectangular regions where appearances of the persons were detected.

Declaration
C#
Copy
[Obsolete("Deprecated since API12. Will be removed in API15.")] public IEnumerable<Rectangle> AppearanceAreas { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><Rectangle>
View Source

DisappearanceAreas

Gets a set of rectangular regions where disappearances of the persons were detected.

Declaration
C#
Copy
[Obsolete("Deprecated since API12. Will be removed in API15.")] public IEnumerable<Rectangle> DisappearanceAreas { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><Rectangle>
View Source

TrackedAreas

Gets a set of rectangular regions where persons were tracked.

Declaration
C#
Copy
[Obsolete("Deprecated since API12. Will be removed in API15.")] public IEnumerable<Rectangle> TrackedAreas { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><Rectangle>