Transform2DComposed Merge Method Cognex VisionPro 9.24

Merges the RightSide composed transform into this composed transform, on right. This is the opposite of Split. If Copy is true, RightSide's contained transforms are added to the sequence by value, otherwise they are added by reference.

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

public void Merge(
	Transform2DComposed rightSide,
	bool copy
)

Parameters

rightSide
Type: Cognex.Vision Transform2DComposed
The transformation to merge with this one.
copy
Type: System Boolean
If true, the transformations within rightSide are copied into this object. Otherwise, they are added by reference.
Exceptions

ExceptionCondition
ArgumentExceptionrightSide is null.
Remarks

Changed Raised when the transformations are merged.

Remarks

Merges the supplied composed transformation with this one. The supplied transform is composed on the right side of this transformation. This function is the opposite of Split. If copy is true, the transformations contained within rightSide are added by value (copied). If copy is false, then they are added by reference. Unlike Compose, this function modifies the state of this object; it does not return a new transformation.

See Also