Update the BG code book model

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvBGCodeBookUpdate(
	IntPtr model,
	IntPtr image,
	Rectangle roi,
	IntPtr mask
)
Visual Basic (Declaration)
Public Shared Sub cvBGCodeBookUpdate ( _
	model As IntPtr, _
	image As IntPtr, _
	roi As Rectangle, _
	mask As IntPtr _
)
Visual C++
public:
static void cvBGCodeBookUpdate(
	IntPtr model, 
	IntPtr image, 
	Rectangle roi, 
	IntPtr mask
)

Parameters

model
Type: System..::.IntPtr
Pointer to the BGCodeBookModel
image
Type: System..::.IntPtr
The image for update
roi
Type: System.Drawing..::.Rectangle
The update roi, use Rectangle.Empty for the whole image
mask
Type: System..::.IntPtr
Can be IntPtr.Zero if not needed. The update mask.

See Also