Table of Contents

Enum ChannelOrder

Namespace
AiDotNet.Augmentation.Image
Assembly
AiDotNet.dll

Specifies the channel ordering of an image tensor.

public enum ChannelOrder

Fields

BCHW = 2

Batch, Channels, Height, Width (batched CHW).

BHWC = 3

Batch, Height, Width, Channels (batched HWC).

CHW = 0

Channels, Height, Width (PyTorch/Caffe convention).

HWC = 1

Height, Width, Channels (TensorFlow/NumPy convention).