CogImageConvertRunModeConstants EnumerationCognex VisionPro
Enumeration of the ways that the input image may be processed by the CogImageConvertTool.

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

public enum CogImageConvertRunModeConstants
Members

  Member nameValueDescription
Intensity1If InputImage is an ICogImage24PlanarColor of type RGB then output a computed ICogImage8Grey that represents the greyscale intensity of this color image. If InputImage is an ICogImag24PlanarColor of type HSI then output an ICogImage8Grey that represents its intensity plane. If InputImage is an ICogImage16Grey then right shift each pixel according to the Encoding property to place the 8 most significant active bits in the output image. And if InputImage is already an ICogImage8Grey then output an ICogImage8Grey that is equivalent to the input image.
HSI2If InputImage is an ICogImage24PlanarColor of type RGB then output a computed ICogImage24PlanarColor of type HSI. If InputImage is already an ICogImage24PlanarColor of type HSI then output an ICogImage24PlanarColor that is equivalent to the input image. Throw an exception at run time if InputImage is any other type.
IntensityFromBayer3InputImage must be an ICogImage8Grey and is assumed to be organized in the Bayer manner. Output a computed ICogImage8Grey that represents the computed greyscale intensity of this input image.
RGBFromBayer4InputImage must be an ICogImage8Grey and is assumed to be organized in the Bayer manner. Output a computed ICogImage24PlanarColor of type RGB.
HSIFromBayer5InputImage must be an ICogImage8Grey and is assumed to be organized in the Bayer manner. Output a computed ICogImage24PlanarColor of type HSI.
Plane06InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 0 of the input image.
Plane17InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 1 of the input image.
Plane28InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 2 of the input image.
RGB9If InputImage is an ICogImage24PlanarColor of type HSI then output a computed ICogImage24PlanarColor of type RGB. If InputImage is already an ICogImage24PlanarColor of type RGB then output an ICogImage24PlanarColor that is equivalent to the input image. Throw an exception at run time if InputImage is any other type.
IntensityFromWeightedRGB10If InputImage is an ICogImage24PlanarColor of type RGB then output a computed ICogImage8Grey that represents the greyscale intensity of this color image using customer provided RGB weighting factors.
PixelFromRange11If the InputImage is a CogImage16Range then output a CogImage16Grey corresponding to the height data.
MaskFromRange12If InputImage is a CogImage16Range then output a CogImage8Grey corresponding to the mask data.
See Also