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?
采纳的回答
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!