CogTransform2DLinear Singular Method Cognex VisionPro 9.8
Returns true if this transform is singular. A transform is singular if the matrix determinant equals zero within the given tolerance.

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

public bool Singular(
	double tolerance
)

Parameters

tolerance
Type: System Double

The tolerance against which to test the determinant of the transformation object's matrix.

Return Value

Type: Boolean

True if the transformation object is singular within the specified tolerance; False if it is not.

Remarks

Returns True if this transformation is singular within the given tolerance. A transformation is singular if the matrix determinant is zero within the given tolerance. A singular transformation cannot be inverted.

See Also