Show / Hide Table of Contents

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 Source

Area

The total area (in pixels) of the connected component.

Declaration
public int Area { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Centroid

Floating point centroid (x,y)

Declaration
public Point2d Centroid { get; }
Property Value
Type Description
OpenCvSharp.Point2d
| Improve this Doc View Source

Height

The vertical size of the bounding box.

Declaration
public int Height { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Label

Label value

Declaration
public int Label { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

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
| Improve this Doc View Source

Rect

The bounding box.

Declaration
public Rect Rect { get; }
Property Value
Type Description
OpenCvSharp.Rect
| Improve this Doc View Source

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
| Improve this Doc View Source

Width

The horizontal size of the bounding box.

Declaration
public int Width { get; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX