Enumeration of the ways that the input image may be processed by the CogImageConvertTool.
Namespace: Cognex.VisionPro.ImageProcessingAssembly: Cognex.VisionPro.ImageProcessing (in Cognex.VisionPro.ImageProcessing.dll) Version: 85.1.0.0
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| Intensity | 1 | If 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. | |
| HSI | 2 | If 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. | |
| IntensityFromBayer | 3 | InputImage 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. | |
| RGBFromBayer | 4 | InputImage must be an ICogImage8Grey and is assumed to be organized in the Bayer manner. Output a computed ICogImage24PlanarColor of type RGB. | |
| HSIFromBayer | 5 | InputImage must be an ICogImage8Grey and is assumed to be organized in the Bayer manner. Output a computed ICogImage24PlanarColor of type HSI. | |
| Plane0 | 6 | InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 0 of the input image. | |
| Plane1 | 7 | InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 1 of the input image. | |
| Plane2 | 8 | InputImage must be an ICogImage24PlanarColor. Output an ICogImage8Grey that represents plane 2 of the input image. | |
| RGB | 9 | If 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. | |
| IntensityFromWeightedRGB | 10 | If 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. | |
| PixelFromRange | 11 | If the InputImage is a CogImage16Range then output a CogImage16Grey corresponding to the height data. | |
| MaskFromRange | 12 | If InputImage is a CogImage16Range then output a CogImage8Grey corresponding to the mask data. |
See Also