The method Opening performs an erosion (Minimum filter with WindowSize paramter) followed by a dilation (Maximum filter with WindowSize parameter).

The opening filter operation will reduce small positive oriented regions and positive noise regions.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Opening(
	int windowSize
)
Public Sub Opening ( _
	windowSize As Integer _
)
public:
void Opening(
	int windowSize
)

Parameters

windowSize
Int32
The window size

See Also