Detection Of water bodies from rest of the image
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
2 comentarios
Respuesta aceptada
Sean de Wolski
el 21 de Mzo. de 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().
Más respuestas (1)
Gaurav
el 26 de Mzo. de 2012
2 comentarios
Image Analyst
el 26 de Mzo. de 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.
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!