Extracts the contours of Maximally Stable Extremal Regions

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

Syntax

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

Parameters

img
IntPtr
The image where MSER will be extracted
mask
IntPtr
The mask for region of interest
contours
IntPtr%
The contours where MSER will be stored
storage
IntPtr
Memory storage
parameters
MSERDetector
MSER parameters

See Also