area of water body in a grey color image

2 visualizaciones (últimos 30 días)
Poornima Posa
Poornima Posa el 21 de Oct. de 2021
Respondida: yanqi liu el 27 de Oct. de 2021
how to get area of water body in one band of a landsat image
  2 comentarios
KSSV
KSSV el 21 de Oct. de 2021
What data you have? What exactly you want to do?
Poornima Posa
Poornima Posa el 21 de Oct. de 2021
i have band 4 of a landsat data, i need to find area of waterbody in that band

Iniciar sesión para comentar.

Respuestas (2)

Bjorn Gustavsson
Bjorn Gustavsson el 21 de Oct. de 2021
If the water-surface are flatter than the not-water-surfaces (seems reasonable assumption for standard optical satellite imaging without additional information), then you might try to look after regions where the magnitude of the gradients are small:
Im = double(your_one_band_landsat_image);
[dIdx,dIdy] = gradient(Im);
d2I = del2(Im);
subplot(1,3,2)
imagesc(Im)
subplot(1,3,1)
imagesc(d2I)
subplot(1,3,3)
imagesc(abs(dIdx)+abs(dIdy)) % other measures of flatness are also available
HTH

yanqi liu
yanqi liu el 27 de Oct. de 2021
sir,may be upload some image sample to develop.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by