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

Invoke.ExpaintImage_Bornemann

Speculatively sets pixel values outside of a region using the fast marching method and coherence analysis.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ExpaintImage_Bornemann
(
	Fil.Image inImage,
	Fil.Region inRegionToExpaint,
	int inExpaintingRadius,
	int inRange,
	float inPreSmoothing,
	float inPostSmoothing,
	float inSharpness,
	Fil.LuminanceMode inLuminanceMode,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRegionToExpaintFil.RegionPart of the image to be expainted.
inExpaintingRadiusint<1, +INF>8How far to expaint from the region. Default value: 8.
inRangeint<1, +INF>6Defines how far a pixel can be from one currently being inpainted to be considered in calculations. Default value: 6.
inPreSmoothingfloat<0.0f, INF>2.0fStandard deviation of a gaussian kernel used before inpainting calculations. Default value: 2.0f.
inPostSmoothingfloat<0.0f, INF>3.0fStandard deviation of a gaussian kernel used after initial inpainting calculations. Default value: 3.0f.
inSharpnessfloat<0.0f, INF>35.0fDesired sharpness of edges inside of the inpainted region (higher = sharper). Default value: 35.0f.
inLuminanceModeFil.LuminanceModeYUVDetermines how the luminance of the input image will be computed. Default value: YUV.
outImageFil.ImageOutput image.

See also