Image objects characteristics, area and shape
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am working on images with crowded objects with various circularity and sizes. Is there any way to detect and list all their shapes and sizes (grouping ones with the same area, and grouping ones with the same shape after)? Any answer is appreciated.
0 comentarios
Respuestas (1)
Image Analyst
el 18 de Ag. de 2017
Sure. I do that in my Image Segmentation Tutorial http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc
For example:
props = regionprops(labeledImage, 'Area');
allAreas = [props.Area];
bigAreaIndexes = find(allAreas > 10000); % Blobs with an area > 10000 pixels.
% Extract only the big area blobs:
bigBlobs = ismember(labeledImage, bigAreaIndexes);
Similar for circularity or any other measurement.
3 comentarios
Image Analyst
el 18 de Ag. de 2017
A look at what? You forgot to post your image.
In the meantime, take a look at this: http://www.mathworks.com/matlabcentral/answers/13205#answer_18099
Ver también
Categorías
Más información sobre Get Started with Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!