You are here: Start » FIL.NET » Invoke.SharpenImage

Invoke.SharpenImage

Enhances contrast of an image so that it appears sharper.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SharpenImage
(
	Fil.Image inImage,
	float inContrastFactor,
	Fil.KernelShape inKernel,
	int inRadiusX,
	Optional<int> inRadiusY,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inContrastFactorfloat<0.0f, INF>1.0fValue representing the strength of the contrast enhancement. Default value: 1.0f.
inKernelFil.KernelShapeKernel shape.
inRadiusXint<0, INF>1Nearly half of the kernel's width (2*R+1). Default value: 1.
inRadiusYFtl.Optional<int><0, INF>Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: ftl::NIL.
outImageFil.ImageOutput image.

See also