The CogImageConvertRunParams type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| BayerType | Gets or sets the expected Bayer image type. | |
| 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.) | |
| ColorFromBayerBlueScale | Nominally computed blue value is multiplied by this scaling factor to produce the output blue value. | |
| ColorFromBayerGreenScale | Nominally computed green value is multiplied by this scaling factor to produce the output green value. | |
| ColorFromBayerRedScale | Nominally computed red value is multiplied by this scaling factor to produce the output red value. | |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| IntensityFromBayerBlueWeight | Output greyscale value is nominally computed blue times this weighting factor plus nominally computed red times IntensityFromBayerRedWeight plus nominally computed green times IntensityFromBayerGreenWeight. | |
| IntensityFromBayerGreenWeight | Output greyscale value is nominally computed green times this weighting factor plus nominally computed red times IntensityFromBayerRedWeight plus nominally computed blue times IntensityFromBayerBlueWeight. | |
| IntensityFromBayerRedWeight | Output greyscale value is nominally computed red times this weighting factor plus nominally computed green times IntensityFromBayerGreenWeight plus nominally computed blue times IntensityFromBayerBlueWeight. | |
| IntensityFromWeightedRGBBlueWeight | Output greyscale value is nominally computed blue times this weighting factor plus nominally computed green times IntensityFromWeightedRGBGreenWeight plus nominally computed red times IntensityFromWeightedRGBRedWeight. | |
| IntensityFromWeightedRGBGreenWeight | Output greyscale value is nominally computed green times this weighting factor plus nominally computed red times IntensityFromWeightedRGBRedWeight plus nominally computed blue times IntensityFromWeightedRGBBlueWeight. | |
| IntensityFromWeightedRGBRedWeight | Output greyscale value is nominally computed red times this weighting factor plus nominally computed green times IntensityFromWeightedRGBGreenWeight plus nominally computed blue times IntensityFromWeightedRGBBlueWeight. | |
| RunMode | Gets or sets how to convert the input image. | |
| SharePelsIfPossible | Gets or sets whether to try to produce an output image that shares pixels with the input image. | |
| 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