Class Resize

  • All Implemented Interfaces:
    Transform

    public class Resize
    extends java.lang.Object
    implements Transform
    A Transform that resizes the image.
    • Constructor Summary

      Constructors 
      Constructor Description
      Resize​(int size)
      Creates a Resize Transform that resizes to the given size.
      Resize​(int width, int height)
      Creates a Resize Transform that resizes to the given width and height.
      Resize​(int width, int height, Image.Interpolation interpolation)
      Creates a Resize Transform that resizes to the given width and height with given interpolation.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      NDArray transform​(NDArray array)
      Applies the Transform to the given NDArray.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Resize

        public Resize​(int size)
        Creates a Resize 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 a Resize Transform that resizes to the given width and height.
        Parameters:
        width - the desired width
        height - the desired height
      • Resize

        public Resize​(int width,
                      int height,
                      Image.Interpolation interpolation)
        Creates a Resize Transform that resizes to the given width and height with given interpolation.
        Parameters:
        width - the desired width
        height - the desired height
        interpolation - the desired interpolation