Enum BorderMode
- Namespace
- AiDotNet.Augmentation.Image
- Assembly
- AiDotNet.dll
Specifies how to handle pixels that fall outside the image bounds during transformation.
public enum BorderMode
Fields
Clamp = 3Clamp to the nearest edge pixel.
Constant = 0Fill with a constant value.
Reflect = 1Reflect pixels at the edge (mirror).
Wrap = 2Wrap around to the opposite edge.