You are here: Start » FIL.NET » Invoke.OpenImage
Removes small bright structures from an image (or fills in dark ones) by applying consecutive erosion and dilation.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void OpenImage ( Fil.Image inImage, Optional<Fil.Region> inRoi, Optional<Fil.Region> inSourceRoi, Optional<Fil.Pixel> inBorderColor, Fil.KernelShape inKernel, int inRadiusX, Optional<int> inRadiusY, Fil.Image outImage, Diagnostic<Fil.Region> diagKernel )
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. | ||
![]() | inSourceRoi | Ftl.Optional<Fil.Region> | Range of inImage pixels to be considered in computations. Default value: ftl::NIL. | ||
![]() | inBorderColor | Ftl.Optional<Fil.Pixel> | Color of the imaginary pixels outside the image boundaries. Default value: ftl::NIL. | ||
![]() | 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. | ||
![]() | diagKernel | Fil.Diagnostic<Fil.Region> | Kernel shape. |