com.mortennobel.imagescaling.BiCubicHighFreqResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-image-scaling Show documentation
Show all versions of java-image-scaling Show documentation
The purpose of the library is to provide better image scaling options than the Java runtime provides.
The newest version!
/*
* Copyright 2013, Morten Nobel-Joergensen
*
* License: The BSD 3-Clause License
* http://opensource.org/licenses/BSD-3-Clause
*/
package com.mortennobel.imagescaling;
/**
* @author Heinz Doerr
*/
final class BiCubicHighFreqResponse extends BiCubicFilter {
public BiCubicHighFreqResponse() {
super(-1.f);
}
@Override
public String getName() {
return "BiCubicHighFreqResponse";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy