Return the mean of all pixel values of this band.
(self)
| 129 | |
| 130 | @property |
| 131 | def mean(self): |
| 132 | """ |
| 133 | Return the mean of all pixel values of this band. |
| 134 | """ |
| 135 | return self.statistics()[2] |
| 136 | |
| 137 | @property |
| 138 | def std(self): |
nothing calls this directly
no test coverage detected