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++ 
[ObsoleteAttribute("Use MSERDetector.ExtractContours function instead, will be removed in the next version")]
public Seq<Point>[] ExtractMSER(
	Image<Gray, byte> mask,
	ref MSERDetector param,
	MemStorage storage
)
<ObsoleteAttribute("Use MSERDetector.ExtractContours function instead, will be removed in the next version")> _
Public Function ExtractMSER ( _
	mask As Image(Of Gray, Byte), _
	ByRef param As MSERDetector, _
	storage As MemStorage _
) As Seq(Of Point)()
[ObsoleteAttribute(L"Use MSERDetector.ExtractContours function instead, will be removed in the next version")]
public:
array<Seq<Point>^>^ ExtractMSER(
	Image<Gray, unsigned char>^ mask, 
	MSERDetector% param, 
	MemStorage^ storage
)

Parameters

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

Return Value

The MSER regions

See Also