Transform2DComposed Split Method Cognex VisionPro 9.22 SR1

Splits this composed transform into two composed transforms just before Index. This object becomes the left part and the right part is returned.

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

public Transform2DComposed Split(
	int index
)

Parameters

index
Type: System Int32
The zero-based index at which to split this transformation. Transforms with indices up to but not including index are retained in this object; the remaining transformations become the returned object.

Return Value

Type: Transform2DComposed

The returned transformation, which contains all transforms from this object with indices greater than or equal to index.

Exceptions

ExceptionCondition
ArgumentExceptionindex is < 0 or > Count -1
Remarks

Changed Raised when the transformation is split.

See Also