All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pkg08_JPEGGhost.GhostCalculationResult Maven / Gradle / Ivy

The newest version!
package pkg08_JPEGGhost;

/**
 * Created by marzampoglou on 11/3/15.
 */
public class GhostCalculationResult {
    private int Quality;
    private float[][] difference;

    float ghostMin;
    float ghostMax;
    float ghostMean;

    public GhostCalculationResult(int Quality, float[][] difference) {
        this.Quality = Quality;
        this.difference = difference;
    }
    public int getQuality() {
        return Quality;
    }

    public float[][] getDifference() {
        return difference;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy