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

Invoke.InpaintImage_Bornemann

Fills in a region of an image with pixel values interpolated from the borders of the area; uses fast marching method and coherence analysis.

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRegionToInpaintFil.Region
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