Water-Based-Indices-on-Sentinel-2A-Images-using-Python icon indicating copy to clipboard operation
Water-Based-Indices-on-Sentinel-2A-Images-using-Python copied to clipboard

Perform Thresholding for LandSat-8 Images

Open Chintan2108 opened this issue 5 years ago • 0 comments

  • Right now, a simple band math formula has been applied to the input image.

  • This outputs a grayscale image - the pixels having higher probability of having the feature of interest have a high value (0-255) and hence appear towards the brighter side.

  • [ ] Perform thresholding, decide a threshold value, in order to convert the output grayscale image into a binary feature map

  • Use data available as a part of PR #9

  • For eg: If the threshold is decided as 200, then modify the output image such that all pixels having values greater than or equal to 200 will now have a value of 1, and other pixels will have a value of 0. This will result in a binary image, in which the bright pixels would represent features.

Chintan2108 avatar Nov 16 '20 13:11 Chintan2108