Resize image
Resizes the input image(s) to the given size.
The supported input data types are Int8, Int16, Int32, Int64, Uint8, Float16, Float32, Float64 and Bool. The output will have the same data type as the input. Given an input of shape (C, H, W), the output shape will be (C, <Height>, <Width>), where <Height> and <Width> are configurable parameters. The input can also contain more than three dimensions, for example (N, M, C, H, W), in which case the output shape will be (N, M, C, <Height>, <Width>). That is, the operation is always performed on the last dimension.
By clicking the node the following parameters can be configured on the right panel:
- Width: New width.
- Height: New height.
- Interpolation mode: How to interpolate between pixel values in the input. One of Nearest Neighbor, Bilinear, Bicubic or Area.
- Height: Height of the output image. If the height exceeds the input, zeros are added to the input before cropping.
- Apply antialiasing: If true, applies antialiasing.