Averaging the object in multiple images
Afficher commentaires plus anciens
I have a circular shape-like object in multiple images. The location of centroid of the objects are same but size (~radius) varies. How can I get an average of the size of all the objects and display it in a new image? The sum of the images divided by the number of images gives the average of the pixel values of the objects and not the pixel location (i.e. size of the object). Thank you for your help.
Réponses (1)
Image Analyst
le 19 Avr 2021
0 votes
Vinit, I have a demo that does exactly that.
The attached demo takes a pseudo-periodic array of shapes (a chain link fence) and determines the "Average" shape and identifies the one with the closest-to-average shape.


5 commentaires
Vinit Nagda
le 19 Avr 2021
Vinit Nagda
le 20 Avr 2021
Vinit Nagda
le 20 Avr 2021
Image Analyst
le 21 Avr 2021
props = regionprops(mask, 'EquivDiameter');
allDiameters = [props.EquivDiameter]
Attach your images separately if you can't figure it out.
Vinit Nagda
le 21 Avr 2021
Catégories
En savoir plus sur Image Segmentation and Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!