CogCenterPointsToLinesResult ClassCognex VisionPro 9.5
The CogCenterPointsToLinesResult class describes the successful result of a call to the CogCenterPointsToLines Execute(...) method. This result class represents an immutable object - its content is set at construction and cannot be changed.
Inheritance Hierarchy

System Object
  System MarshalByRefObject
    Cognex.VisionPro.Implementation CogObjectBase
      Cognex.VisionPro.Implementation CogSerializableObjectBase
        Cognex.VisionPro CogCenterPointsToLinesResult

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.CorePlus (in Cognex.VisionPro.CorePlus.dll) Version: 69.0.0.0
Syntax

[SerializableAttribute]
public class CogCenterPointsToLinesResult : CogSerializableObjectBase, 
	IDisposable

The CogCenterPointsToLinesResult type exposes the following members.

Constructors

  NameDescription
Public methodCogCenterPointsToLinesResult(CogCenterPointsToLinesResult)
Copy constructs a CogCenterPointsToLinesResult object. This is a deep copy.
Protected methodCogCenterPointsToLinesResult(SerializationInfo, StreamingContext)
Serialization construct a CogCenterPointsToLinesResult object.
Top
Methods

  NameDescription
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Public methodDispose 
Destruct this CogCenterPointsToLinesResult.
Protected methodDispose(Boolean)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Finalize this CogCenterPointsToLinesResult.
(Overrides Object Finalize .)
Protected methodGetAttributes
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetClassName
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetComponentName
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetConverter
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetDefaultEvent
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetDefaultProperty
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEditor
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEvents 
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEvents( Attribute )
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Protected methodGetObjectData
Implements the GetObjectData method of the ISerializable interface.
(Inherited from CogSerializableObjectBase.)
Protected methodGetProperties 
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetProperties( Attribute )
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetPropertyOwner
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Protected methodMemberwiseClone 
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodMemberwiseClone(Boolean)
Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Properties

  NameDescription
Public propertyLinesFromPointsTransform
The best fit linear transform that maps from points to lines. If Mode was Single, this transform minimizes the variation in the signed distance between the ("A") points and the the ("A") lines. If Mode was Pair, then this transform minimizes the variation in the point to line signed distance differences across all point-pair line-pair correspondences.
Public propertyMode
How the centering process was performed. May be either "Single" or "Pair". If Mode was "Single", then both the SignedDistancesB property and the SignedDistanceAbsoluteDifferenceStatistics property will be null.
Public propertySignedDistanceAbsoluteDifferenceStatistics
The statistics of the absolute difference between the signed distances of each point and line in a point pair, across all point-pair line-pair correspondences. This property is null if Mode is Single.
Public propertySignedDistancesA
The signed distances from each ("A") point to its corresponding ("A") line, measured along the normal to the line.
Public propertySignedDistancesB
The signed distances from each ("B") point to its corresponding ("B") line, measured along the normal to the line. If Mode is Single then this property is null.
Public propertySignedDistanceStatistics
The statistics of the signed distances between each point and its corresponding line.
Top
See Also