Azzera filtri
Azzera filtri

Detection Of water bodies from rest of the image

1 visualizzazione (ultimi 30 giorni)
I want to extract only water bodies from rest of the image..how can i do this efficiently? Can anyone help me?
  2 Commenti
Image Analyst
Image Analyst il 21 Mar 2012
Where did you upload your image to?
Gaurav
Gaurav il 28 Mar 2012
Sir i want to extract only the water part as shown in the following image..
http://www.freemalaysiatoday.com/wp-content/uploads/2011/01/No-water-electricity-roads-in-Jabus-constituency-1.jpg
Please help me to achieve this efficiently...

Accedi per commentare.

Risposta accettata

Sean de Wolski
Sean de Wolski il 21 Mar 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().
  1 Commento
Gaurav
Gaurav il 23 Mar 2012
Thanks for your reply...
But I am confused about what to write in isWet.Is this a threshold function for pixel values corresponding to water color? or anything else?
Please help me as i m very new to image processing and matlab...
Thank u.

Accedi per commentare.

Più risposte (1)

Gaurav
Gaurav il 26 Mar 2012
Thanks for your reply... But I am confused about what to write in isWet.Is this a threshold function for pixel values corresponding to water color? or anything else? Please help me as i m very new to image processing and matlab... Thank u.
  2 Commenti
Image Analyst
Image Analyst il 26 Mar 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.
Gaurav
Gaurav il 28 Mar 2012
Sir i want to extract only the water part as shown in the following image..
http://www.freemalaysiatoday.com/wp-content/uploads/2011/01/No-water-electricity-roads-in-Jabus-constituency-1.jpg
Please help me to achieve this efficiently...

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by