You are here: Start » FIL.NET » Function Reference » Image » Image Local Transforms » FIL.SmoothImage_Quantile

FIL.SmoothImage_Quantile

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SmoothImage_Quantile
(
	FilNet.Image inImage,
	float inQuantile,
	FilNet.SmoothImageMedianKernel inKernel,
	int inRadiusX,
	FilNet.Image outImage
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
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.
outImageFilNet.ImageOutput image.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Errors

List of possible exceptions:

Error type Description
DomainError Not supported kernel in SmoothImage_Quantile.
DomainError Not supported pixel format in SmoothImage_Quantile.
DomainError Region exceeds an input image in SmoothImage_Quantile.
DomainError Source roi exceeds an input image in SmoothImage_Quantile.
DomainError Not supported inImage pixel format in SmoothImage_Quantile. Supported formats: UInt8.

Function Overrides

See also