Transform2DLinear Compose Method Cognex VisionPro 9.22

Returns a new linear transform which is the composition of the given transform (on the right side) and this one (on the left side).

Namespace: Cognex.Vision
Assembly: Cognex.Vision.Core.Net (in Cognex.Vision.Core.Net.dll) Version: 9.22.2.0
Syntax

public Transform2DLinear Compose(
	Transform2DLinear rightSide
)

Parameters

rightSide
Type: Cognex.Vision Transform2DLinear
The transformation to compose with this one.

Return Value

Type: Transform2DLinear
Remarks

Returns a new linear transformation object that is the composition of a given transformation object and this one. The order in which you compose transformations is important. If you have a transform that maps AFromB and another that maps BFromC, you compose the two to get a single transform that maps AFromC as follows: AFromB.Compose(BFromC). You do not use: BFromC.Compose(AFromB). Compose performs the same operation as the ComposeBase method of ITransform2D. The only difference is the type of the returned object.

See Also