enum ov::preprocess::ResizeAlgorithm

Overview

An enum containing all supported resize(interpolation) algorithms available in preprocessing. More…

#include <resize_algorithm.hpp>

enum ResizeAlgorithm
{
    RESIZE_LINEAR,
    RESIZE_CUBIC,
    RESIZE_NEAREST,
    RESIZE_BILINEAR_PILLOW,
    RESIZE_BICUBIC_PILLOW,
};

Detailed Documentation

An enum containing all supported resize(interpolation) algorithms available in preprocessing.

Enum Values

RESIZE_LINEAR

Linear interpolation matching the TensorFlow behavior.

RESIZE_CUBIC

Cubic interpolation.

RESIZE_NEAREST

Nearest interpolation.

RESIZE_BILINEAR_PILLOW

Bilinear interpolation matching the Pillow behavior.

RESIZE_BICUBIC_PILLOW

Bicubic interpolation matching the Pillow behavior.