Extracts the contours of Maximally Stable Extremal Regions

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Seq<Point>[] ExtractMSER(
	Image<Gray, byte> mask,
	ref MCvMSERParams param,
	MemStorage storage
)
Public Function ExtractMSER ( _
	mask As Image(Of Gray, Byte), _
	ByRef param As MCvMSERParams, _
	storage As MemStorage _
) As Seq(Of Point)()
public:
array<Seq<Point>^>^ ExtractMSER(
	Image<Gray, unsigned char>^ mask, 
	MCvMSERParams% param, 
	MemStorage^ storage
)

Parameters

mask
Image<(Of <(Gray, Byte>)>)
Can be null if not needed. Optional parameter for the region of interest
param
MCvMSERParams %
MSER parameter
storage
MemStorage
The storage where the contour will be saved

Return Value

The MSER regions

See Also