CvBlobDetectorDetect Method |
http://www.emgu.com
Detect blobs from input image.
Namespace:
Emgu.CV.Cvb
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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