ConnectedComponentsTypes Enumeration
|
components algorithm output formats
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic enum ConnectedComponentsTypes
Public Enumeration ConnectedComponentsTypes
public enum class ConnectedComponentsTypes
type ConnectedComponentsTypes
OpenCvSharp.ConnectedComponentsTypes = function();
OpenCvSharp.ConnectedComponentsTypes.createEnum('OpenCvSharp.ConnectedComponentsTypes', false);
Members
| Member name | Value | Description |
---|
| Left | 0 |
The leftmost (x) coordinate which is the inclusive start of the bounding
box in the horizontal direction.
|
| Top | 1 |
The topmost (y) coordinate which is the inclusive start of the bounding
box in the vertical direction.
|
| Width | 2 |
The horizontal size of the bounding box
|
| Height | 3 |
The vertical size of the bounding box
|
| Area | 4 |
The total area (in pixels) of the connected component
|
See Also