Package ai.djl.modality.cv.transform
Class Resize
java.lang.Object
ai.djl.modality.cv.transform.Resize
- All Implemented Interfaces:
Transform
A
Transform
that resizes the image.-
Constructor Summary
ConstructorsConstructorDescriptionResize
(int size) Creates aResize
Transform
that resizes to the given size.Resize
(int width, int height) Creates aResize
Transform
that resizes to the given width and height.Resize
(int width, int height, Image.Interpolation interpolation) Creates aResize
Transform
that resizes to the given width and height with given interpolation. -
Method Summary
-
Constructor Details
-
Resize
public Resize(int size) Creates aResize
Transform
that resizes to the given size.- Parameters:
size
- the new size to use for both height and width
-
Resize
public Resize(int width, int height) Creates aResize
Transform
that resizes to the given width and height.- Parameters:
width
- the desired widthheight
- the desired height
-
Resize
Creates aResize
Transform
that resizes to the given width and height with given interpolation.- Parameters:
width
- the desired widthheight
- the desired heightinterpolation
- the desired interpolation
-
-
Method Details