Resize Image (Image Processing)
Synopsis
Resizes an imageDescription
Resizing means changing the dimensions of the image. One can scale image along x-axix/horizontal meaning changing the width and keeping the height same as that of original image or one can scale an image along Y-axis/vertical meaning changing the height of the image and keeping the width same as that of original image.
Images will be resized to the size "width" and "height" which you can configure using parameters.
Input
- image
The image object to resize
Output
- image
The resized image.
- ori
The original image.
Parameters
- width The width of the resulting image
- height The height of resulting image.