CogCalibCheckerboard GetUncalibratedPoint Method Cognex VisionPro
Gets the X and Y coordinates of the uncalibrated vertex point with the given index. Valid indices range from 0 to NumPoints-1 inclusive.

Namespace: Cognex.VisionPro.CalibFix
Assembly: Cognex.VisionPro.CalibFix (in Cognex.VisionPro.CalibFix.dll) Version: 65.1.0.0
Syntax

public void GetUncalibratedPoint(
	int index,
	out double x,
	out double y
)

Parameters

index
Type: System Int32

The zero-based index of the point to return.

x
Type: System Double 

The x-coordinate of the returned point.

y
Type: System Double 

The y-coordinate of the returned point.

Exceptions

ExceptionCondition
ArgumentException

index < 0 or index >= NumPoints.

Remarks

Gets the X and Y coordinates of the uncalibrated vertex point with the given index. Valid indices range from 0 to NumPoints–1 inclusive.

The order of the points in the point set is undefined. A point with a given index in this point set corresponds to the point with the same index returned by GetRawCalibratedPoint(Int32, Double , Double ).

See Also