Substracts the image to its gaussian blurred version.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void UnsharpMask(
	int radius,
	double amount,
	double threshold
)
Public Sub UnsharpMask ( _
	radius As Integer, _
	amount As Double, _
	threshold As Double _
)
public:
void UnsharpMask(
	int radius, 
	double amount, 
	double threshold
)

Parameters

radius
Int32
Radius of gaussian blur matrix. (1..)
amount
Double
Difference between origianl and blur image. (0.0 to 5.0)
threshold
Double
Threshold of maximum luminosity value to apply the effect. (0.0 to 1.0)

Examples

CopyC#
IEViewer.Image.UnsharpMask(2, 2.0, 0.05);

See Also