You are here: Start » FIL.NET » Invoke.SmoothImage_Median
Replaces each pixel with the median of pixels within a kernel.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SmoothImage_Median ( Fil.Image inImage, Optional<Fil.Region> inRoi, Optional<Fil.Region> inSourceRoi, Fil.SmoothImageMedianKernel inKernel, int inRadiusX, Optional<int> inRadiusY, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of outImage pixels being written. Default value: ftl::NIL. | ||
![]() | inSourceRoi | Ftl.Optional<Fil.Region> | Range of inImage pixels being read. Default value: ftl::NIL. | ||
![]() | inKernel | Fil.SmoothImageMedianKernel | |||
![]() | 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. |