Package org.openjump.core.rasterimage
Class Stats
- java.lang.Object
-
- org.openjump.core.rasterimage.Stats
-
public class Stats extends Object
- Author:
- AdL
-
-
Constructor Summary
Constructors Constructor Description Stats(int bandCount)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Stats
defaultRGBStats()
int
getBandCount()
double
getMax(int band)
double
getMean(int band)
double
getMin(int band)
double
getStdDev(int band)
void
setStatsForBand(int band, double min, double max, double mean, double stdDev)
-
-
-
Method Detail
-
setStatsForBand
public void setStatsForBand(int band, double min, double max, double mean, double stdDev)
-
getBandCount
public int getBandCount()
-
getMin
public double getMin(int band)
-
getMax
public double getMax(int band)
-
getMean
public double getMean(int band)
-
getStdDev
public double getStdDev(int band)
-
defaultRGBStats
public static Stats defaultRGBStats()
-
-