Merge pull request #796 from akx/patch-1

Fix `ImageStat` docs
This commit is contained in:
Alex Clark ☺ 2014-07-14 17:48:58 -04:00
commit 5fc0b948e4

View File

@ -22,32 +22,32 @@ for a region of an image.
.. py:attribute:: count .. py:attribute:: count
Total number of pixels. Total number of pixels for each band in the image.
.. py:attribute:: sum .. py:attribute:: sum
Sum of all pixels. Sum of all pixels for each band in the image.
.. py:attribute:: sum2 .. py:attribute:: sum2
Squared sum of all pixels. Squared sum of all pixels for each band in the image.
.. py:attribute:: pixel .. py:attribute:: mean
Average pixel level. Average (arithmetic mean) pixel level for each band in the image.
.. py:attribute:: median .. py:attribute:: median
Median pixel level. Median pixel level for each band in the image.
.. py:attribute:: rms .. py:attribute:: rms
RMS (root-mean-square). RMS (root-mean-square) for each band in the image.
.. py:attribute:: var .. py:attribute:: var
Variance. Variance for each band in the image.
.. py:attribute:: stddev .. py:attribute:: stddev
Standard deviation. Standard deviation for each band in the image.