RemoveNoise removes noise pixels using the Kfill algorithm. The RemoveNoise method works only with black/white images (1bit).

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void RemoveNoise(
	int iterations,
	bool invertImage
)
Public Sub RemoveNoise ( _
	iterations As Integer, _
	invertImage As Boolean _
)
public:
void RemoveNoise(
	int iterations, 
	bool invertImage
)

Parameters

iterations
Int32
Iterations is the maximum number of iterations (from 1).
invertImage
Boolean
If InvertImage is True, the image is inverted (negative) when the algorithm works.

See Also