Uses of Class
jaitools.numeric.Statistic

Packages that use Statistic
jaitools.media.jai.kernelstats Calculates a range of statistics for pixel neighbourhoods defined by a JAI Kernel 
jaitools.media.jai.zonalstats Calculates summary statistics, optionally within zones defined by a zone image, for values in a data image 
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 jaitools.media.jai.kernelstats
 

Methods in jaitools.media.jai.kernelstats with parameters of type Statistic
static RenderedImage KernelStatsDescriptor.create(RenderedImage source0, Statistic[] stats, javax.media.jai.KernelJAI kernel, int band, javax.media.jai.ROI roi, Boolean maskSource, Boolean maskDest, Boolean ignoreNaN, Number nilValue, RenderingHints hints)
          Convenience method which constructs a ParameterBlockJAI and invokes JAI.create("kernelstats", params)
 

Constructors in 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)
          Constructor
 

Uses of Statistic in jaitools.media.jai.zonalstats
 

Methods in jaitools.media.jai.zonalstats that return Statistic
 Statistic Result.getStatistic()
          Get the statistic that this result pertains to.
 

Methods in jaitools.media.jai.zonalstats with parameters of type Statistic
static RenderedImage ZonalStatsDescriptor.create(RenderedImage dataImage, RenderedImage zoneImage, Statistic[] stats, Integer[] bands, javax.media.jai.ROI roi, AffineTransform zoneTransform, List<Range<Double>> ranges, Range.Type rangesType, boolean rangeLocalStats, List<Range<Double>> noDataRanges, RenderingHints hints)
           
static RenderedImage ZonalStatsDescriptor.create(RenderedImage dataImage, RenderedImage zoneImage, Statistic[] stats, Integer[] bands, javax.media.jai.ROI roi, AffineTransform zoneTransform, List<Range<Double>> ranges, RenderingHints hints)
          Convenience method which constructs a ParameterBlockJAI and invokes JAI.create("ZonalStats", params)
 ZonalStats ZonalStats.statistic(Statistic s)
          Get the subset of results for the given Statistic.
 

Constructors in 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 zoneTransform, List<Range<Double>> excludedRanges)
          Constructor.
ZonalStatsOpImage(RenderedImage dataImage, RenderedImage zoneImage, Map<?,?> config, javax.media.jai.ImageLayout layout, Statistic[] stats, Integer[] bands, javax.media.jai.ROI roi, AffineTransform zoneTransform, List<Range<Double>> ranges, Range.Type rangesType, boolean rangeLocalStats, List<Range<Double>> noDataRanges)
          Constructor.
 

Uses of Statistic in jaitools.numeric
 

Methods in 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 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 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.
 



Copyright © 2009-2011. All Rights Reserved.