Detection Of water bodies from rest of the image
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
2 Commenti
Risposta accettata
Sean de Wolski
il 21 Mar 2012
I = your_image;
for ii = size(I,1):-1:1
for jj = size(I,2):-1:1);
water(ii,jj) = isWet(I(ii,jj,:))
end
end
Now you just need to write isWet().
Più risposte (1)
Gaurav
il 26 Mar 2012
2 Commenti
Image Analyst
il 26 Mar 2012
It looks like Sean's joke went over your head. But you still have a chance to respond to my comment about posting your image.
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!