Class ConnectedComponents.Blob
One blob
Inheritance
System.Object
ConnectedComponents.Blob
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public class Blob
Properties
| Improve this Doc View SourceArea
The total area (in pixels) of the connected component.
Declaration
public int Area { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Centroid
Floating point centroid (x,y)
Declaration
public Point2d Centroid { get; }
Property Value
Type | Description |
---|---|
OpenCvSharp.Point2d |
Height
The vertical size of the bounding box.
Declaration
public int Height { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Label
Label value
Declaration
public int Label { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Left
The leftmost (x) coordinate which is the inclusive start of the bounding box in the horizontal direction.
Declaration
public int Left { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Rect
The bounding box.
Declaration
public Rect Rect { get; }
Property Value
Type | Description |
---|---|
OpenCvSharp.Rect |
Top
The topmost (y) coordinate which is the inclusive start of the bounding box in the vertical direction.
Declaration
public int Top { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Width
The horizontal size of the bounding box.
Declaration
public int Width { get; }
Property Value
Type | Description |
---|---|
System.Int32 |