CvBlobDetectorDetect Method |
http://www.emgu.com
Detect blobs from input image.
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic uint Detect(
Image<Gray, byte> img,
CvBlobs blobs
)
Public Function Detect (
img As Image(Of Gray, Byte),
blobs As CvBlobs
) As UInteger
public:
unsigned int Detect(
Image<Gray, unsigned char>^ img,
CvBlobs^ blobs
)
member Detect :
img : Image<Gray, byte> *
blobs : CvBlobs -> uint32
Parameters
- img
- Type: Emgu.CVImageGray, Byte
The input image - blobs
- Type: Emgu.CV.CvbCvBlobs
The storage for the detected blobs
Return Value
Type:
UInt32Number of pixels that has been labeled.
See Also