CogCalibNPointToNPoint GetComputedUncalibratedFromRawCalibratedTransform Method Cognex VisionPro
Returns the 2-D, minimum squared error, transformation that maps points from the raw calibrated space into uncalibrated space, if it has been computed. Otherwise, returns Nothing. The transform is computed by calling Calibrate.

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

public ICogTransform2D GetComputedUncalibratedFromRawCalibratedTransform()

Return Value

Type: ICogTransform2D

The transformation that maps points from raw calibrated space to uncalibrated space.

Remarks

Returns the 2D, minimum-squared-error transformation that maps points from the raw calibrated space into uncalibrated coordinate space, if it has been computed.

The transform is computed by calling Calibrate . If the Calibrated property is True, the transform is always non-null. However, in certain instances, it may also be non-null even if Calibrated is False. For example, if you calibrate and then change only the CalibratedOriginX or CalibratedOriginY, the UncalibratedFromRawCalibrated transform remains unaffected, even though Calibrated is now set to False.

Default Value: NULL

See Also