Pixel based filters — SciPy Filters for QGIS¶
Complete pixel statistics¶
Difference band to band¶
- class scipy_filters.algs.gradient_algorithm.SciPyPixelDiffAlgorithm[source]¶
Difference band to band
Returns band to band difference for each pixel, calculated with numpy.diff.
The number of bands in the output is the number of input bands minus one.
Return absolute values Difference is calculated band to band, starting with band 1. The result contains also negative values, optionally the absolute values are returned.
Pixel gradient filter¶
- class scipy_filters.algs.gradient_algorithm.SciPyPixelGradientAlgorithm[source]¶
Pixel gradient filter
Returns band to band gradient for each pixel, calculated with numpy.gradient.
Return absolute values Gradient is calculated band to band, starting with band 1. The result contains also negative values, optionally the absolute values are returned.