Detection Of water bodies from rest of the image
2 ビュー (過去 30 日間)
古いコメントを表示
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
2 件のコメント
採用された回答
Sean de Wolski
2012 年 3 月 21 日
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().
その他の回答 (1 件)
Gaurav
2012 年 3 月 26 日
2 件のコメント
Image Analyst
2012 年 3 月 26 日
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.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!