Effacer les filtres
Effacer les filtres

segment an image into portions..

2 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 22 Avr 2015
i have a image, please can someone help me, to segment it into regions
i applied otsu threshold binarization to the image, and got a binary image,
from the binary image is it possible to get the top, bottom, left, right and center regions as a box region...
bw = im2bw(Gray, graythresh(Gray));
  2 commentaires
Michael Haderlein
Michael Haderlein le 22 Avr 2015
Do you want to do this based on the color (or grayscale) information or just based on the location?
Elysi Cochin
Elysi Cochin le 22 Avr 2015
color or gray does not matter, sir... is it possible to get such portions....

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 22 Avr 2015
Find the centers of each zone automatically. The centroid will be at the center - use regionprops(). The others you can get by using imerode on the binary image to shrink the mask, then take the north, south, east and west pixels. Use find() for that. Now you have the centers of each zone. Then use voronoi() to get the zones themselves.
  6 commentaires
Elysi Cochin
Elysi Cochin le 24 Avr 2015
sir i didnt get... how to use voronoi..
Image Analyst
Image Analyst le 24 Avr 2015
I will have not much time this weekend. I'm leaving this afternoon to go camping for the weekend, so hopefully you can get it done without me. I haven't used voronoi much lately so I'd have to figure it out just like you, from the help. But I know that it divides an image up into zones based on equidistant lines between points. I think there are examples so hopefully you can figure it out without me.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Voronoi Diagram dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by