Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 3D Basics » GetPoint3DGridPoint_Interpolated

GetPoint3DGridPoint_Interpolated


Returns an interpolated single point of a point 3D grid.

Syntax

C++
C#
 
void avl::GetPoint3DGridPoint_Interpolated
(
	const avl::Point3DGrid& inPoint3DGrid,
	atl::real inOffsetX,
	atl::real inOffsetY,
	atl::real inStepX,
	atl::real inStepY,
	atl::real inX,
	atl::real inY,
	int inInterpolationRadius,
	avl::Point3D& outPoint
)

Parameters

Name Type Range Default Description
inPoint3DGrid const Point3DGrid& Input point 3D grid
inOffsetX real Defines offset of the input grid along X axis
inOffsetY real Defines offset of the input grid along Y axis
inStepX real 0.01 - 1.0f Defines step of the input grid along X axis
inStepY real 0.01 - 1.0f Defines step of the input grid along Y axis
inX real X coordinate of the input point
inY real Y coordinate of the input point
inInterpolationRadius int 0 - 65536 1 Radius of vicinity taking into account to interpolate not existing point
outPoint Point3D& Output point

Errors

Error type Description
DomainError Incorrect input coordinates in GetPoint3DGridPoint_Interpolated.