GraphSegmentationProcessImage Method |
http://www.emgu.com
Segment an image and store output in dst.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void ProcessImage(
IInputArray src,
IOutputArray dst
)
Public Sub ProcessImage (
src As IInputArray,
dst As IOutputArray
)
public:
void ProcessImage(
IInputArray^ src,
IOutputArray^ dst
)
member ProcessImage :
src : IInputArray *
dst : IOutputArray -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The input image. Any number of channel (1 (Eg: Gray), 3 (Eg: RGB), 4 (Eg: RGB-D)) can be provided - dst
- Type: Emgu.CVIOutputArray
The output segmentation. It's a CV_32SC1 Mat with the same number of cols and rows as input image, with an unique, sequential, id for each pixel.
See Also