Class SurveillanceEngine

Definition

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

SurveillanceEngine is a base class for surveillance event triggers. Media Vision Surveillance provides the functionality which can be utilized for creation of video surveillance systems.

C#
Copy
public abstract class SurveillanceEngine : IDisposable
Inheritance
object
SurveillanceEngine
Derived
Implements
System.IDisposable

Properties

View Source

Roi

Sets and gets the ROI (Region Of Interest).

Declaration
C#
Copy
public Point[] Roi { get; set; }
Property Value
Type Description
Point[]
Exceptions
Type Condition
System.ObjectDisposedException

The SurveillanceEngine has already been disposed of.

Methods

View Source

Dispose()

Releases all the resources used by the SurveillanceEngine object.

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(bool)

Releases the resources used by the SurveillanceEngine object.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
bool disposing

true to release both managed and unmanaged resources; otherwise false to release only unmanaged resources.

View Source

~SurveillanceEngine()

Finalizes an instance of the SurveillanceEngine class.

Declaration
C#
Copy
protected ~SurveillanceEngine()
View Source

RemoveSource(SurveillanceSource)

Removes the source from SurveillanceEngine.

Declaration
C#
Copy
public void RemoveSource(SurveillanceSource source)
Parameters
Type Name Description
SurveillanceSource source
Exceptions
Type Condition
System.ArgumentNullException

source is null.

System.ObjectDisposedException

The SurveillanceEngine has already been disposed of.

System.ArgumentException

source has not been added.

Implements

System.IDisposable

See Also