Update the BG code book model

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

Syntax

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

Parameters

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

See Also