CvBlobDetectorDrawBlobs Method |
http://www.emgu.com
Draw the blobs on the image
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<Bgr, byte> DrawBlobs(
Image<Gray, byte> image,
CvBlobs blobs,
CvBlobDetectorBlobRenderType type,
double alpha
)
Public Function DrawBlobs (
image As Image(Of Gray, Byte),
blobs As CvBlobs,
type As CvBlobDetectorBlobRenderType,
alpha As Double
) As Image(Of Bgr, Byte)
public:
Image<Bgr, unsigned char>^ DrawBlobs(
Image<Gray, unsigned char>^ image,
CvBlobs^ blobs,
CvBlobDetectorBlobRenderType type,
double alpha
)
member DrawBlobs :
image : Image<Gray, byte> *
blobs : CvBlobs *
type : CvBlobDetectorBlobRenderType *
alpha : float -> Image<Bgr, byte>
Parameters
- image
- Type: Emgu.CVImageGray, Byte
The binary mask. - blobs
- Type: Emgu.CV.CvbCvBlobs
The blobs. - type
- Type: Emgu.CV.CvbCvBlobDetectorBlobRenderType
Drawing type. - alpha
- Type: SystemDouble
The alpha value. 1.0 for solid color and 0.0 for transparent
Return Value
Type:
ImageBgr,
ByteThe images with the blobs drawn
See Also