How to select an object of a bw image

1 visualización (últimos 30 días)
Scrat
Scrat el 24 de Oct. de 2015
Respondida: Image Analyst el 24 de Oct. de 2015
I have a bw image with two blobs. I want to calculate area centroid etc. Of each individually....how can i achieve this??!

Respuesta aceptada

Image Analyst
Image Analyst el 24 de Oct. de 2015
With regionprops():
labeledImage = bwlabel(binaryImage);
measurements = regionprops(labeledImage, 'Area');
allAreas = [measurements.Area]
See my Image Segmentation Tutorial for a full demo: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by