InpaintImage_Telea


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

Applications:Speculative setting of unknown (or unwanted) pixels. This version is trying to do this better than with simple interpolation.

Syntax

C++
C#
Python
 
def InpaintImage_Telea(
	inImage: Image,
	inRegionToInpaint: Region,
	inRange: int,
	outImage: Image,
	/
)
-> None

Parameters

Name Type Range Default Description
Input value inImage Image Input image
Input value inRegionToInpaint Region
Input value inRange int 1 - + Defines how far a pixel can be from one currently being inpainted to be considered in calculations
Output value outImage Image Output image