Cog3DAlignZoneAngle Overlap Property Cognex VisionPro
Gets or sets the overlap threshold (in radians) for this angle zone.

Namespace: Cognex.VisionPro3D
Assembly: Cognex.VisionPro3D (in Cognex.VisionPro3D.dll) Version: 65.1.0.0
Syntax

public double Overlap { get; set; }

Property Value

Type: Double
The angle overlap threshold (in radians).
Events

Event TypeReason
ICogChangedEvent Changed Fires when this property changes. The following state flag may be affected:
Exceptions

ExceptionCondition
ArgumentOutOfRangeException The supplied value is less than zero, or exceeds the maximum.
Remarks

Two result candidates are said to overlap in this angle zone if the absolute difference between their angles is less than or equal to the given Overlap threshold.

When two pattern instances overlap in volume, and also overlap in all three angle zones, 3DAlign discards the pattern instance with the lower score. See the XYZOverlap property of the Cog3DAlignRunParams class for more information.

The default values for an angle zone depend upon which zone it is:

    ZoneAngle      Low Default     High Default    Overlap Default
+---------------+---------------+---------------+------------------+
|     First     |   -20 (deg)   |   +20 (deg)   |     360 (deg)    |
+---------------+---------------+---------------+------------------+
|     Second    |   -20 (deg)   |   +20 (deg)   |     180 (deg)    |
+---------------+---------------+---------------+------------------+
|     Third     |  -180 (deg)   |  +180 (deg)   |     360 (deg)    |
+---------------+---------------+---------------+------------------+
    ZoneAngle      Min Overlap     Max Overlap
+---------------+---------------+---------------+
|     First     |    0 (deg)    |   360 (deg)   |
+---------------+---------------+---------------+
|     Second    |    0 (deg)    |   180 (deg)   |
+---------------+---------------+---------------+
|     Third     |    0 (deg)    |   360 (deg)   |
+---------------+---------------+---------------+
The allowed range of values for the overlap also depend upon the zone:

See Also