area of water body in a grey color image

2 次查看(过去 30 天)
how to get area of water body in one band of a landsat image
  2 个评论
KSSV
KSSV 2021-10-21
What data you have? What exactly you want to do?
Poornima Posa
Poornima Posa 2021-10-21
i have band 4 of a landsat data, i need to find area of waterbody in that band

请先登录,再进行评论。

回答(2 个)

Bjorn Gustavsson
Bjorn Gustavsson 2021-10-21
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 2021-10-27
sir,may be upload some image sample to develop.

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by