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

Invoke.CloseImage_AnyKernel

Removes small dark structures from an image (or fills in bright ones) by applying consecutive dilation and erosion.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void CloseImage_AnyKernel
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	Optional<Fil.Region> inSourceRoi,
	Optional<Fil.Pixel> inBorderColor,
	Fil.Region inKernel,
	Optional<Fil.Location> inKernelAnchor,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of outImage pixels to be computed. Default value: ftl::NIL.
inSourceRoiFtl.Optional<Fil.Region>Range of inImage pixels to be considered in computations. Default value: ftl::NIL.
inBorderColorFtl.Optional<Fil.Pixel>Color of the imaginary pixels outside the image boundaries. Default value: ftl::NIL.
inKernelFil.RegionKernel shape.
inKernelAnchorFtl.Optional<Fil.Location>A location within inKernel, defining its center. Default value: ftl::NIL.
outImageFil.ImageOutput image.

See also