Detection Of water bodies from rest of the image
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
2 commentaires
Réponse acceptée
Sean de Wolski
le 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().
Plus de réponses (1)
Gaurav
le 26 Mar 2012
2 commentaires
Image Analyst
le 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.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!