The Cog3DRangeImagePixelCounts 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.) | |
| NumCarePixels |
The number of care pixels in the region of interest. Note that this value
is always less than or equal to NumRegionBoundingBoxPixels.
| |
| NumRegionBoundingBoxPixels |
The number of pixels in the pixel aligned bounding box of the region of interest.
| |
| NumUsedPixels |
The number of pixels that were actually used by the tool or function to compute the
result. Such pixels must always be visible care pixels, but some
functions may choose to impose other restrictions as well. Each function should
document how it computes NumUsedPels. Note that this value is always less than
or equal to NumVisibleCarePels.
| |
| NumVisibleCarePixels |
The number of pixels in the effective source region that are both care pixels and
visible pixels. Note that this value is always less than or equal to NumCarePels.
| |
| 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.) |
See Also