CogTransform2DLinear MapPoints Method Cognex VisionPro 9.22
Map the supplied points through this transform.

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 87.0.0.0
Syntax

public virtual double[,] MapPoints(
	double[,] coordinatesXY
)

Parameters

coordinatesXY
Type:  System Double 
A row-major two dimensional array of X,Y point coordinates to be mapped. These elements must be of type double.

Return Value

Type:  Double 
A row-major two dimensional array of the mapped X,Y point coordinates. The size of this array is equal to the size of the input array

Implements

ICogTransform2D MapPoints( Double )
Exceptions

ExceptionCondition
ArgumentNullExceptionIf the coordinatesXY parameter is null.
ArgumentExceptionIf coordinatesXY is not an array of doubles.
See Also