Click or drag to resize
Accord.NET (logo)

BlobsFiltering Constructor (Int32, Int32, Int32, Int32)

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
)
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.
Remarks
This constructor creates an instance of BlobsFiltering class with CoupledSizeFiltering property set to false.
See Also