Extracts the contours of Maximally Stable Extremal Regions

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

Syntax

C#
public static void cvExtractMSER(
	IntPtr img,
	IntPtr mask,
	ref IntPtr contours,
	IntPtr storage,
	MCvMSERParams parameters
)
Visual Basic (Declaration)
Public Shared Sub cvExtractMSER ( _
	img As IntPtr, _
	mask As IntPtr, _
	ByRef contours As IntPtr, _
	storage As IntPtr, _
	parameters As MCvMSERParams _
)
Visual C++
public:
static void cvExtractMSER(
	IntPtr img, 
	IntPtr mask, 
	IntPtr% contours, 
	IntPtr storage, 
	MCvMSERParams parameters
)

Parameters

img
Type: System..::.IntPtr
The image where MSER will be extracted
mask
Type: System..::.IntPtr
The mask for region of interest
contours
Type: System..::.IntPtr %
The contours where MSER will be stored
storage
Type: System..::.IntPtr
Memory storage
parameters
Type: Emgu.CV.Structure..::.MCvMSERParams
MSER parameters

See Also