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 | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRegionToInpaint | Region | |||
![]() |
inRange | int | 1 - +![]() |
Defines how far a pixel can be from one currently being inpainted to be considered in calculations | |
![]() |
outImage | Image | Output image |



