You are here: Start » FIL.NET » FIS.SmoothImage_Quantile Method

FIS.SmoothImage_Quantile Method

Replaces each pixel with a quantile of pixels within a kernel.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void SmoothImage_Quantile
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	NullableRef<FilNet.Region> inSourceRoi,
	float inQuantile,
	FilNet.SmoothImageMedianKernel inKernel,
	int inRadiusX,
	int? inRadiusY,
	FilNet.Image outImage
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Range of outImage pixels being written. Default value: ftl::NIL.
inSourceRoiFilNet.NullableRef<FilNet.Region>Range of inImage pixels being read. Default value: ftl::NIL.
inQuantilefloat<0.0f, 1.0f>0.8fThe quantile to be calculated for a neighbourhood of each pixel. Default value: 0.8f.
inKernelFilNet.SmoothImageMedianKernel
inRadiusXint<0, INF>1Nearly half of the kernel's width (2*R+1). Default value: 1.
inRadiusYint?<0, INF>Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: ftl::NIL.
outImageFilNet.ImageOutput image.

Function Overrides

See also