[This is preliminary documentation and is subject to change.]

Background code book model

Namespace:  Emgu.CV.VideoSurveillance
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class BGCodeBookModel<TColor> : UnmanagedObject, 
	IBGFGDetector<TColor>
where TColor : struct, new(), IColor
Public Class BGCodeBookModel(Of TColor As {Structure, New, IColor}) _
	Inherits UnmanagedObject _
	Implements IBGFGDetector(Of TColor)
generic<typename TColor>
where TColor : value class, gcnew(), IColor
public ref class BGCodeBookModel : public UnmanagedObject, 
	IBGFGDetector<TColor>

Type Parameters

TColor
The type of color for the image

Members

               
 All Members  Constructors   Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
BGCodeBookModel<(Of <(TColor>)>)()()()
Create a background code book model
_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
BackgroundMask
Get the background mask.
ClearStale(Int32, Rectangle, Image<(Of <(Gray, Byte>)>))
Dispose()()()
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
DisposeObject()()()
Release the unmanaged resource that is associated to this object
(Overrides DisposableObject..::.DisposeObject()()().)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()
Destructor
(Inherited from DisposableObject.)
ForgroundMask
Get the forground mask. Do not dispose this image
GetHashCode()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Ptr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
ReleaseManagedResources()()()
Release the managed resouces. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
ToString()()()
Returns a String that represents the current Object.
(Inherited from Object.)
Update(Image<(Of <(TColor, Byte>)>))
Update the BG code book model
Update(Image<(Of <(TColor, Byte>)>), Rectangle, Image<(Of <(Gray, Byte>)>))
Update the BG code book model

Inheritance Hierarchy

System..::.Object
  Emgu.Util..::.DisposableObject
    Emgu.Util..::.UnmanagedObject
      Emgu.CV.VideoSurveillance..::.BGCodeBookModel<(Of <(TColor>)>)

See Also