SupperpixelSEEDSGetLabels Method |
http://www.emgu.com
Returns the segmentation labeling of the image.
Each label represents a superpixel, and each pixel is assigned to one superpixel label.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void GetLabels(
IOutputArray labels
)
Public Sub GetLabels (
labels As IOutputArray
)
public:
void GetLabels(
IOutputArray^ labels
)
member GetLabels :
labels : IOutputArray -> unit
Parameters
- labels
- Type: Emgu.CVIOutputArray
Return: A CV_32UC1 integer array containing the labels of the superpixel segmentation. The labels are in the range [0, NumberOfSuperpixels].
See Also