Click or drag to resize
Accord.NET (logo)

BlobsFiltering Constructor (Int32, Int32, Int32, Int32, Boolean)

Initializes a new instance of the BlobsFiltering class.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public BlobsFiltering(
	int minWidth,
	int minHeight,
	int maxWidth,
	int maxHeight,
	bool coupledSizeFiltering
)
Request Example View Source

Parameters

minWidth
Type: SystemInt32
Minimum allowed width of blob.
minHeight
Type: SystemInt32
Minimum allowed height of blob.
maxWidth
Type: SystemInt32
Maximum allowed width of blob.
maxHeight
Type: SystemInt32
Maximum allowed height of blob.
coupledSizeFiltering
Type: SystemBoolean
Specifies if size filetering should be coupled or not.
Remarks

For information about coupled filtering mode see documentation for CoupledSizeFiltering property of BlobCounterBase class.

See Also