Enumeration of affine transform clipping modes. These specify what to do if the affine region is clipped (i.e. not entirely within the input image).
Namespace: Cognex.VisionPro.ImageProcessingAssembly: Cognex.VisionPro.ImageProcessing (in Cognex.VisionPro.ImageProcessing.dll) Version: 69.0.0.0
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| Zeroes | 0 | Fill fully-clipped pixels with zeroes and interpolate pixels near the edge of the image. Faster than the cogAffineTransformClipModeFill option but pixels near the edge of the image may have values in between zero and those of the input image. | |
| Fill | 1 | Fill all clipped pixels with a constant value specified by the ClipFillValue property. | |
| Error | 2 | Return an error if the region is clipped. |
Remarks
Enumeration of affine transform clipping modes. These specify what to do if the affine region is clipped (i.e. not entirely within the input image).
See Also