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

Invoke.SmoothImage_Mean

Smooths an image by averaging pixels within a rectangular kernel.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SmoothImage_Mean
(
	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
)

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 read. Default value: ftl::NIL.
inBorderColorFtl.Optional<Fil.Pixel>Color of the imaginary pixels outside the image boundaries. Default value: ftl::NIL.
inKernelFil.KernelShapeKernel shape.
inRadiusXint<0, INF>1Nearly half of the kernel's width (2*R+1). Default value: 1.
inRadiusYFtl.Optional<int><0, INF>Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: ftl::NIL.
outImageFil.ImageOutput image.

See also