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

Parameters

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

Return Value

The MSER regions

See Also