The Cog3DRangeImageHeightCalculatorResult type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.) | |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| HighTail |
Returns the calculated high tail height.
| |
| Histogram |
Returns a histogram of the height values of the individual
range image pixels.
See also:
GetHeightFromHistogramBin(Int32)
and
GetHistogramBinFromHeight(Double) | |
| HistogramHeightFromBinOffset |
The offset value need to map a histogram bin number to an actual height value.
binHeight = binIndex * HistogramHeightFromBinScale + HistogramHeightFromBinOffset
| |
| HistogramHeightFromBinScale |
The scale value needed to map a histogram bin number to an actual height value.
binHeight = binIndex * HistogramHeightFromBinScale + HistogramHeightFromBinOffset
| |
| LowTail |
Returns the calculated low tail height.
| |
| Maximum |
Returns the maximum height value of pixels used in
the height calculation.
| |
| Mean |
Returns the mean height of all pixels used in
the height calculation.
| |
| MeanPlusStdDevMult |
Returns the calculated mean plus standard deviation multiplier height.
| |
| Median |
Returns the median height of all pixles used in
the height calculation.
| |
| Minimum |
Returns the minimum height value of pixels used in
the height calculation.
| |
| PixelCounts |
Result information which identifies the number of pixels in the range image
that fall into each of 4 different categories.
See Cog3DRangeImagePixelCountsTypeConstants for the definition of the different categories. | |
| PixelCountsDiagImage |
Identifies which pixels in the range image were "used" to calculate the height.
Each pixel in the pixel counts diag image is a bit-wise or of Cog3DRangeImagePixelCountsTypeConstants. | |
| PixelCountsDiagImageOffsetX |
The 2D distance in the X direction from the upper left corner
of the original input image to the upper left corner of the
PixelCountsDiagImage
(in pixels).
| |
| PixelCountsDiagImageOffsetY |
The 2D distance in the Y direction from the upper left corner
of the original input image to the upper left corner of the
PixelCountsDiagImage
(in pixels).
| |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.) | |
| StdDevMult |
Returns the value of
StdDevMult
which was used to compute
MeanPlusStdDevMult.
|
See Also