Detection Of water bodies from rest of the image
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
2 Kommentare
Akzeptierte Antwort
Sean de Wolski
am 21 Mär. 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().
Weitere Antworten (1)
Gaurav
am 26 Mär. 2012
2 Kommentare
Image Analyst
am 26 Mär. 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.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!