Table of Contents

Class ConnectedComponents.Blob

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

One blob

public class ConnectedComponents.Blob
Inheritance
ConnectedComponents.Blob
Inherited Members

Properties

Area

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

public int Area { get; }

Property Value

int

Centroid

Floating point centroid (x,y)

public Point2d Centroid { get; }

Property Value

Point2d

Height

The vertical size of the bounding box.

public int Height { get; }

Property Value

int

Label

Label value

public int Label { get; }

Property Value

int

Left

The leftmost (x) coordinate which is the inclusive start of the bounding box in the horizontal direction.

public int Left { get; }

Property Value

int

Rect

The bounding box.

public Rect Rect { get; }

Property Value

Rect

Top

The topmost (y) coordinate which is the inclusive start of the bounding box in the vertical direction.

public int Top { get; }

Property Value

int

Width

The horizontal size of the bounding box.

public int Width { get; }

Property Value

int