CvBlobDetectorBlobRenderType Enumeration |
http://www.emgu.com
Blob rendering type
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax[FlagsAttribute]
public enum BlobRenderType
<FlagsAttribute>
Public Enumeration BlobRenderType
[FlagsAttribute]
public enum class BlobRenderType
[<FlagsAttribute>]
type BlobRenderType
Members
| Member name | Value | Description |
---|
| Color | 1 |
Render each blog with a different color.
|
| Centroid | 2 |
Render centroid.
|
| BoundingBox | 4 |
Render bounding box.
|
| Angle | 8 |
Render angle.
|
| ToLog | 16 |
Print blob data to log out.
|
| ToStd | 32 |
Print blob data to std out.
|
| Default | 15 |
The default rendering type
|
See Also