Detection Of water bodies from rest of the image
조회 수: 8 (최근 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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!