CloseSurfacePoints


Reconstructs missing points of the input surface by interpolating neighboring points.

Syntax

C++
C#
Python
 
def CloseSurfacePoints(
	inSurface: Surface,
	inKernel: KernelShape,
	inRadiusX: int,
	outSurface: Surface,
	/,
	*,
	inRoi: Region | None = None,
	inRadiusY: int | None = None
)
-> None

Parameters

Name Type Range Default Description
Input value inSurface Surface Input surface
Input value inRoi Region | None None Region of interest
Input value inKernel KernelShape Kernel shape (predefined)
Input value inRadiusX int 0 - Nearly half of the kernel's width (2*R+1)
Input value inRadiusY int | None 0 - None Nearly half of the kernel's height (2*R+1), or same as inRadiusX
Output value outSurface Surface Output surface