SupperpixelSEEDSGetLabelContourMask Method |
http://www.emgu.com
Returns the mask of the superpixel segmentation stored in SuperpixelSEEDS object.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void GetLabelContourMask(
IOutputArray image,
bool thickLine = false
)
Public Sub GetLabelContourMask (
image As IOutputArray,
Optional thickLine As Boolean = false
)
public:
void GetLabelContourMask(
IOutputArray^ image,
bool thickLine = false
)
member GetLabelContourMask :
image : IOutputArray *
?thickLine : bool
(* Defaults:
let _thickLine = defaultArg thickLine false
*)
-> unit
Parameters
- image
- Type: Emgu.CVIOutputArray
Return: CV_8UC1 image mask where -1 indicates that the pixel is a superpixel border, and 0 otherwise. - thickLine (Optional)
- Type: SystemBoolean
If false, the border is only one pixel wide, otherwise all pixels at the border are masked.
See Also