Click or drag to resize
Accord.NET (logo)

HitAndMissModes Enumeration

Hit and Miss modes.

Namespace:  Accord.Imaging.Filters
Assembly:  Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax
public enum Modes
Request Example View Source
Members
  Member nameValueDescription
HitAndMiss0 Hit and miss mode.
Thinning1 Thinning mode.
Thickening2 Thickening mode.
Remarks

Bellow is a list of modes meaning depending on pixel's correspondence to specified structuring element:

  • HitAndMiss - on match pixel is set to white, otherwise to black;
  • Thinning - on match pixel is set to black, otherwise not changed.
  • Thickening - on match pixel is set to white, otherwise not changed.

See Also