Esempio n. 1
0
        public void ComputeHistogram(double begin, double end, int buckets, int[] histogram, bool isIncludeOutOfRange, bool isCanApprox, Action <int, string> progressCallback)
        {
            int interleave = isCanApprox ? GeoDo.RSS.Core.DF.Constants.DEFAULT_PIXELES_INTERLEAVE : 1;

            StatValuesComputer.ComputeHistogram(this, buckets, interleave, begin, end, histogram, isCanApprox, progressCallback);
        }
Esempio n. 2
0
 public void ComputeStatistics(double begin, double end, out double min, out double max, out double mean, out double stddev, bool isCanApprox, Action <int, string> progressCallback)
 {
     StatValuesComputer.Stat(this, 1, begin, end, out min, out max, out mean, out stddev, isCanApprox, progressCallback);
 }