|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Statistic | |
|---|---|
| org.jaitools.media.jai.classifiedstats | Calculates summary statistics, on top of classification rasters, for values in a data image |
| org.jaitools.media.jai.kernelstats | Performs the "KernelStats" operation, calculating summary statistics for pixel neighbourhoods. |
| org.jaitools.media.jai.zonalstats | Calculates summary statistics for values in a data image, optionally within zones defined by an integer zone image |
| org.jaitools.numeric | Classes providing a range of numeric functions including summary statistics, defining and comparing ranges (intervals), and compiling histogram data. |
| Uses of Statistic in org.jaitools.media.jai.classifiedstats |
|---|
| Methods in org.jaitools.media.jai.classifiedstats that return Statistic | |
|---|---|
Statistic |
Result.getStatistic()
Get the statistic that this result pertains to. |
| Methods in org.jaitools.media.jai.classifiedstats with parameters of type Statistic | |
|---|---|
ClassifiedStats |
ClassifiedStats.statistic(Statistic s)
Get the subset of results for the given Statistic. |
| Constructors in org.jaitools.media.jai.classifiedstats with parameters of type Statistic | |
|---|---|
ClassifiedStatsOpImage(RenderedImage dataImage,
RenderedImage[] classifierImages,
RenderedImage[] pivotClassifierImages,
Map<?,?> config,
javax.media.jai.ImageLayout layout,
Statistic[] stats,
Integer[] bands,
javax.media.jai.ROI roi,
Collection<Range<Double>> ranges,
Range.Type rangesType,
boolean rangeLocalStats,
Collection<Range<Double>> noDataRanges,
Double[] noDataClassifiers,
Double[] noDataPivotClassifiers)
Constructor. |
|
Result(int imageBand,
Statistic stat,
List<Range<Double>> ranges,
Double value,
long numOffered,
long numAccepted,
long numNaN,
long numNoData,
org.apache.commons.collections.keyvalue.MultiKey classifierKeys)
Create a new Result object. |
|
| Uses of Statistic in org.jaitools.media.jai.kernelstats |
|---|
| Constructors in org.jaitools.media.jai.kernelstats with parameters of type Statistic | |
|---|---|
KernelStatsOpImage(RenderedImage source,
javax.media.jai.BorderExtender extender,
Map config,
javax.media.jai.ImageLayout layout,
Statistic[] stats,
javax.media.jai.KernelJAI kernel,
int band,
javax.media.jai.ROI roi,
boolean maskSrc,
boolean maskDest,
boolean ignoreNaN,
Number nilValue)
Creates a new instance. |
|
| Uses of Statistic in org.jaitools.media.jai.zonalstats |
|---|
| Methods in org.jaitools.media.jai.zonalstats that return Statistic | |
|---|---|
Statistic |
Result.getStatistic()
Get the statistic that this result pertains to. |
| Methods in org.jaitools.media.jai.zonalstats with parameters of type Statistic | |
|---|---|
ZonalStats |
ZonalStats.statistic(Statistic s)
Get the subset of results for the given Statistic. |
| Constructors in org.jaitools.media.jai.zonalstats with parameters of type Statistic | |
|---|---|
Result(int imageBand,
int zone,
Statistic stat,
List<Range> ranges,
Double value,
long numOffered,
long numAccepted,
long numNaN,
long numNoData)
Create a new Result object. |
|
ZonalStatsOpImage(RenderedImage dataImage,
RenderedImage zoneImage,
Map<?,?> config,
javax.media.jai.ImageLayout layout,
Statistic[] stats,
Integer[] bands,
javax.media.jai.ROI roi,
AffineTransform dataToZoneTransform,
Collection<Range<Double>> ranges,
Range.Type rangesType,
boolean rangeLocalStats,
Collection<Range<Double>> noDataRanges)
Constructor. |
|
| Uses of Statistic in org.jaitools.numeric |
|---|
| Methods in org.jaitools.numeric that return Statistic | |
|---|---|
static Statistic |
Statistic.get(String name)
Gets a Statistic constant by name (case-insensitive). |
static Statistic |
Statistic.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Statistic[] |
Statistic.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in org.jaitools.numeric that return types with arguments of type Statistic | |
|---|---|
Map<Statistic,Double> |
Processor.get()
Gets the value of all statistics calculated by this processor. |
Map<Statistic,Double> |
AbstractProcessor.get()
Gets the value of all statistics calculated by this processor. |
Set<Statistic> |
StreamingSampleStats.getStatistics()
Gets the statistics that are currently set. |
Map<Statistic,Double> |
StreamingSampleStats.getStatisticValues()
Gets the values of all statistics calculated by this sampler. |
Collection<Statistic> |
SumProcessor.getSupported()
Gets the Statistics supported by this processor. |
Collection<Statistic> |
Processor.getSupported()
Gets the Statistics supported by this processor. |
Collection<Statistic> |
MeanVarianceProcessor.getSupported()
Gets the Statistics supported by this processor. |
Collection<Statistic> |
ExtremaProcessor.getSupported()
Gets the Statistics supported by this processor. |
Collection<Statistic> |
ExactMedianProcessor.getSupported()
Gets the Statistics supported by this processor. |
Collection<Statistic> |
ApproxMedianProcessor.getSupported()
Gets the Statistics supported by this processor. |
| Methods in org.jaitools.numeric with parameters of type Statistic | |
|---|---|
Double |
SumProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Double |
Processor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Double |
MeanVarianceProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Double |
ExtremaProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Double |
ExactMedianProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Double |
ApproxMedianProcessor.get(Statistic stat)
Gets the value of the statistic calculated by this processor. |
Processor |
ProcessorFactory.getForStatistic(Statistic stat)
Return a new instance of a Processor that claims to support
the given Statistic. |
long |
StreamingSampleStats.getNumAccepted(Statistic stat)
Gets the number of sample values that have been accepted for the specified Statistic. |
long |
StreamingSampleStats.getNumNaN(Statistic stat)
Gets the number of NaN values that have been offered. |
long |
StreamingSampleStats.getNumNoData(Statistic stat)
Gets the number of NoData values (including NaN) that have been offered. |
long |
StreamingSampleStats.getNumOffered(Statistic stat)
Gets the number of sample values that have been offered for the specified Statistic. |
Double |
StreamingSampleStats.getStatisticValue(Statistic stat)
Gets the current value of a running statistic. |
boolean |
StreamingSampleStats.isSet(Statistic stat)
Tests whether the specified statistic is currently set. |
void |
StreamingSampleStats.setStatistic(Statistic stat)
Adds a statistic to those calculated by this sampler. |
void |
StreamingSampleStats.setStatistics(Statistic[] stats)
Adds the given statistics to those that will be calculated by this sampler. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||