Python implementation of image segmentation algorithm of Shepherd et al (2019) Operational Large-Scale Segmentation of Imagery Based on Iterative Elimination. Remote Sensing 11(6).
as it appears the return type from getStatsVal() is always float due to the mix of types in that class.
Note: there could be an argument for having the counts and pixCount also being handled differently as they are uint32 rather than int32. But because they are written to (currently) int32 columns maybe we should store them as int32 to reduce the confusion...
as it appears the return type from
getStatsVal()
is always float due to the mix of types in that class.Note: there could be an argument for having the
counts
andpixCount
also being handled differently as they areuint32
rather thanint32
. But because they are written to (currently)int32
columns maybe we should store them asint32
to reduce the confusion...