Class SuperResolution

java.lang.Object
com.idrsolutions.image.JDeliImage
com.idrsolutions.image.scale.SuperResolution

public final class SuperResolution extends com.idrsolutions.image.JDeliImage
Class scales image files using super resolution scaling. Example to perform 2x scaling on an image, where:
  • image is of type BufferedImage

 image = SuperResolution.scale2x(image);
 
  • Field Summary

    Fields inherited from class com.idrsolutions.image.JDeliImage

    bb
  • Method Summary

    Modifier and Type
    Method
    Description
    Perform 2 times scaling using Convolutional Neural Networks

    Methods inherited from class com.idrsolutions.image.JDeliImage

    optimiseImage

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • scale2x

      public static BufferedImage scale2x(BufferedImage image)
      Perform 2 times scaling using Convolutional Neural Networks
      Parameters:
      image - source image to process
      Returns:
      scaled image