SupperpixelSLICGetLabelContourMask Method |
http://www.emgu.com
Returns the mask of the superpixel segmentation stored in SuperpixelSLIC object.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void GetLabelContourMask(
IOutputArray image,
bool thickLine = true
)
Public Sub GetLabelContourMask (
image As IOutputArray,
Optional thickLine As Boolean = true
)
public:
void GetLabelContourMask(
IOutputArray^ image,
bool thickLine = true
)
member GetLabelContourMask :
image : IOutputArray *
?thickLine : bool
(* Defaults:
let _thickLine = defaultArg thickLine true
*)
-> unit
Parameters
- image
- Type: Emgu.CVIOutputArray
CV_8U1 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