Package com.idrsolutions.image.scale
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 TypeMethodDescriptionstatic BufferedImage
scale2x
(BufferedImage image) Perform 2 times scaling using Convolutional Neural NetworksMethods inherited from class com.idrsolutions.image.JDeliImage
optimiseImage
-
Method Details
-
scale2x
Perform 2 times scaling using Convolutional Neural Networks- Parameters:
image
- source image to process- Returns:
- scaled image
-