ITransform2D InterfaceCognex VisionPro 9.24

Common interface for all 2D transforms.

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

public interface ITransform2D : IChangedEvent, 
	IObject

The ITransform2D type exposes the following members.

Methods

  NameDescription
Public methodBestFitLinearTransform

Returns a new linear transform which best describes this transform over the given set of points. The points must be expressed in 'from' coordinates.

Public methodComposeBase

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

Public methodCopyBase

Returns a new copy of this transform.

Public methodInvertBase

Returns a new transform which is the inverse of this one.

Public methodLinearTransform

Returns a new linear transform which best describes this transform at the given point. The point must be expressed in 'from' coordinates.

Public methodMapPoint

Maps the given x,y point through this transform, filling in the mapped x,y coordinates.

Public methodMapPoints

Map the supplied points through this transform.

Public methodResumeAndRaiseChangedEvent

Re-enables raising of the ChangedEvent after SuspendChangedEvent has been called, and raises the ChangedEvent if the ChangedEventSuspended count is reduced to zero and any changes were made while events were suspended. Must be called once for each call to SuspendChangedEvent.

(Inherited from IChangedEvent.)
Public methodSuspendChangedEvent

Temporarily suspends the raising of the ChangedEvent. May be called more than once, and a corresponding call to ResumeAndRaiseChangedEvent must be made for each call to SuspendChangedEvent.

(Inherited from IChangedEvent.)
Top
Properties

  NameDescription
Public propertyChangedEventSuspended

Indicates if raising the ChangedEvent has been suspended.

(Inherited from IChangedEvent.)
Public propertyLinear

Returns true if this is a linear transform.

Top
Events

  NameDescription
Public eventChanged

The actual event.

(Inherited from IChangedEvent.)
Top
Remarks

This interface provides a common interface for all two-dimensional transforms.

See Also