CogTransform2DLinear Invert Method Cognex VisionPro 9.22
Returns a new linear transform which is the inverse of this one.

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

public CogTransform2DLinear Invert()

Return Value

Type: CogTransform2DLinear

The inverse of this transformation object.

Remarks

Returns a new linear transformation object that is the inverse of this one. If a transform maps points from space A to space B, the inverse of the transform maps points from space B to space A.

Invert  performs the same operation as the InvertBase  method of ICogTransform2D. The only difference is the type of the returned transform: ICogTransform2D's Invert  method returns a linear transform.

See Also