OpenSurfacePoints


Removes some existing points from the input surface when some points in their vicinity are missing.

Syntax

C++
C#
Python
 
def OpenSurfacePoints(
	inSurface: Surface,
	inKernel: KernelShape,
	inRadiusX: int,
	inPreserveDimensions: bool,
	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
Input value inPreserveDimensions bool Flag indicating whether the surface dimensions should be preserved or not
Output value outSurface Surface Output surface