GetMultipleImagePixelValues_Safe


Returns an array of pixel values at specified locations; the image range is checked.

Syntax

C++
Python
 
def GetMultipleImagePixelValues_Safe(
	inImage: Image,
	inPoints: list[Point2D],
	/,
	*,
	inInterpolation: InterpolationMethod = InterpolationMethod.Bilinear,
	inDefault: float = 0.0
)
-> outValues: list[float]

Parameters

Name Type Default Description
Input value inImage Image Input image
Input value inPoints list[Point2D]
Input value inInterpolation InterpolationMethod InterpolationMethod.Bilinear
Input value inDefault float 0.0
Output value outValues list[float]