Crop image
Crops the input image(s) to the given box.
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:
- Top y-coordinate: Y-position to start crop from. If negative, zeros are added to the input before cropping.
- Left x-coordinate: X-position to start crop from. If negative, zeros are added to the input before cropping.
- Width: Width of the output image. If the width exceeds the input, zeros are added to the input before cropping.
- Height: Height of the output image. If the height exceeds the input, zeros are added to the input before cropping.