This image preprocessor defines the Crop operation.
Crop operations creates new image with the following sizes:
croppedWidth = initialWidth - left - right
croppedHeight = initialHeight - top - bottom
Transforms provided input image.
Computes output image shape for the provided inputShape.
The image will be cropped from the bottom by the given number of pixels.
The image will be cropped from the left by the given number of pixels.
The image will be cropped from the right by the given number of pixels.
The image will be cropped from the top by the given number of pixels.