Hit and Miss modes.

Namespace:  AForge.Imaging.Filters
Assembly:  AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public enum Modes

Members

Member nameDescription
HitAndMiss
Hit and miss mode.
Thinning
Thinning mode.
Thickening
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