Click or drag to resize
Accord.NET (logo)

BlobCounterBaseCoupledSizeFiltering Property

Specifies if size filtering should be coupled or not.

Namespace:  Accord.Imaging
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public bool CoupledSizeFiltering { get; set; }
Request Example View Source

Property Value

Type: Boolean
Remarks

In uncoupled filtering mode, objects are filtered out in the case if their width is smaller than MinWidthor height is smaller than MinHeight. But in coupled filtering mode, objects are filtered out in the case if their width is smaller than MinWidthand height is smaller than MinHeight. In both modes the idea with filtering by objects' maximum size is the same as filtering by objects' minimum size.

Default value is set to , what means uncoupled filtering by size.

See Also