You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inContrastFactor | float | <0.0f, INF> | 1.0f | Value representing the strength of the contrast enhancement. Default value: 1.0f. |
![]() | inKernel | Fil.KernelShape | Kernel shape. | ||
![]() | inRadiusX | int | <0, INF> | 1 | Nearly half of the kernel's width (2*R+1). Default value: 1. |
![]() | inRadiusY | Ftl.Optional<int> | <0, INF> | Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: ftl::NIL. | |
![]() | outImage | Fil.Image | Output image. |