Cog3DRangeImageVolumeCalculator MinimumHeightThreshold Property Cognex VisionPro 9.5
The minimum height value, in selected space 3D units, for each range image pixel in order to include that pixel in the volume computation.

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

public double MinimumHeightThreshold { get; set; }

Property Value

Type: Double
The minimum height threshold must be in the range [0, Double::MaxValue]. The default is 0.0.
Events

Event TypeReason
ICogChangedEvent Changed

Fires when this property changes.

The following state flag will be set:

  • SfMinimumHeightThreshold
Exceptions

ExceptionCondition
ArgumentOutOfRangeException if set to a value less than 0.0.
Remarks

The "height" of a range image pixel relative to a base plane is defined as the signed distance from the center of the range image pixel to the nearest point on the base plane, measured in selected space 3D coordinates.

The user can specify a minimum height threshold so that pixels with a small height (e.g. noise about the base plane) can be excluded from the volume computation. Only pixels with a positive height that is greater than or equal to the user-specified minimum height threshold contribute to the computed volume.

Note that height threshold does not affect the amount a pixel used in the computation contributes to the volume. The height threshold only determines whether or not a range image pixel is used.

See Also