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
}