Table of Contents

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 = 3

Clamp to the nearest edge pixel.

Constant = 0

Fill with a constant value.

Reflect = 1

Reflect pixels at the edge (mirror).

Wrap = 2

Wrap around to the opposite edge.