Enumeration of two image subtraction overflow modes.
Namespace: Cognex.VisionPro.ImageProcessingAssembly: Cognex.VisionPro.ImageProcessing (in Cognex.VisionPro.ImageProcessing.dll) Version: 93.1.0.0
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| Bounded | 0 | Limit the pixel values to low and high values. For 8 bit unsigned images, this is 0 and 255, respectively. | |
| Wrap | 1 | Wrap pixel values that overflow from the subtract operation. | |
| Shift | 2 | Divide the signed pixel value result by two. | |
| Absolute | 3 | Generate pixel values from the absolute value of the result of the subtract operation. |
Remarks
Enumeration of two image subtraction overflow modes.
See Also