Overview
This topic discusses the JSON representation of statistics objects. A statistics object consists of a dictionary of name-value pairs.
{
  "min": <min>, //double, minimum value
  "max": <max>, //double, maximum value
  "mean": <mean>, //double, mean value
  "standardDeviation" : <standardDeviation> //double, standard deviation value
  "count": <count>, //integer(64bit), counts of pixels
  "median": <median>, //double, median value
  "mode": <mode> //double, mode value
}{
  "min": 0,
  "max": 23.064547000000001,
  "mean": 4.547517,
  "standardDeviation": 2.6870280000000002,
  "count": 10000,
  "median": 5,
  "mode": 6
}