enum ov::op::util::InterpolateBase::InterpolateMode

Overview

Interpolation mode. More…

#include <interpolate_base.hpp>

enum InterpolateMode
{
    NEAREST,
    LINEAR,
    LINEAR_ONNX,
    CUBIC,
    BILINEAR_PILLOW,
    BICUBIC_PILLOW,
};

Detailed Documentation

Interpolation mode.

NEAREST - nearest interpolation LINEAR - linear interpolation as in TensorFlow LINEAR_ONNX - linear interpolation as in ONNX CUBIC - cubic interpolation BILINEAR_PILLOW - bilinear interpolation as in Pillow BICUBIC_PILLOW - bicubic interpolation as in Pillow