namespace TensorFlowLite
{
///
/// Specifies a mode for the model input image
///
public enum AspectMode
{
///
/// Resizes the image without keeping the aspect ratio.
///
None = 0,
///
/// Resizes the image to contain full area and padded black pixels.
///
Fit = 1,
///
/// Trims the image to keep aspect ratio.
///
Fill = 2,
}
}