Class MovementDetectionConfiguration
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
Represents a configuration of MovementDetector.
C#Copypublic class MovementDetectionConfiguration : SurveillanceEngineConfiguration, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View Source
MovementDetectionConfiguration()
Initializes a new instance of the MovementDetectionConfiguration class.
Declaration
C#Copypublic MovementDetectionConfiguration()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | The required features are not supported. |
API Level: 4
Fields
Declaration
C#Copypublic static readonly int DefaultThreshold
Field Value
Type | Description |
---|---|
Int32 |
API Level: 4
Properties
View Source
Threshold
Gets or sets movement detection threshold.
This value might be set before subscription on Detected event
to specify the sensitivity of the movement detector.
Declaration
C#Copypublic int Threshold { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The value indicating the sensitivity of MovementDetector from 0 to 255 inclusive,
where 255 means that no movements will be detected and 0 means that all frame changes
will be interpreted as movements. |
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The MovementDetectionConfiguration already has been disposed of. |
System.ArgumentOutOfRangeException |
|
API Level: 4
Implements
System.IDisposable