You are here: Start » AVL.NET » Function Reference » Image » Image Basics » AVL.GetMultipleImagePixelValues_Safe

AVL.GetMultipleImagePixelValues_Safe

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void GetMultipleImagePixelValues_Safe
(
	AvlNet.Image inImage,
	IList<AvlNet.Point2D> inPoints,
	AvlNet.InterpolationMethod inInterpolation,
	float inDefault,
	IList<float> outValues
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>
inInterpolationAvlNet.InterpolationMethodBilinearDefault value: Bilinear.
inDefaultfloat0.0fDefault value: 0.0f.
outValuesSystem.Collections.Generic.IList<float>

Errors

List of possible exceptions:

Error type Description
DomainError Unknown interpolation method in GetMultipleImagePixelValues_Safe.

See also