You are here: Start » FIL.NET » Invoke.ConvolveImage
Computes a convolution of the input image with a user-specified mask.
| Namespace: | Fil |
|---|---|
| Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ConvolveImage ( Fil.Image inImage, Optional<Fil.Region> inRoi, Fil.Matrix inMask, bool inNormalizeMaskValues, Optional<Fil.Location> inMaskOrigin, Fil.Image outImage )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of outImage pixels to be computed. Default value: ftl::NIL. | ||
![]() | inMask | Fil.Matrix | Image convolution kernel. | ||
![]() | inNormalizeMaskValues | bool | False | Normalize sum of weights in mask to one. Default value: False. | |
![]() | inMaskOrigin | Ftl.Optional<Fil.Location> | Relative location of point to its mask. Default value: ftl::NIL. | ||
![]() | outImage | Fil.Image | Output image. |


