Skip to content

Commit

Permalink
Merge pull request #796 from akx/patch-1
Browse files Browse the repository at this point in the history
Fix `ImageStat` docs
  • Loading branch information
aclark4life committed Jul 14, 2014
2 parents f0fa458 + 42032b3 commit 5fc0b94
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/reference/ImageStat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,32 +22,32 @@ for a region of an image.

.. py:attribute:: count
Total number of pixels.
Total number of pixels for each band in the image.

.. py:attribute:: sum
Sum of all pixels.
Sum of all pixels for each band in the image.

.. 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
Median pixel level.
Median pixel level for each band in the image.

.. py:attribute:: rms
RMS (root-mean-square).
RMS (root-mean-square) for each band in the image.

.. py:attribute:: var
Variance.
Variance for each band in the image.

.. py:attribute:: stddev
Standard deviation.
Standard deviation for each band in the image.

0 comments on commit 5fc0b94

Please sign in to comment.