Effacer les filtres
Effacer les filtres

I would like to determine the average of a region of pixels within an image and quantify it automatically. How can I do that?

19 vues (au cours des 30 derniers jours)
Hello,
I have an .lsm image and with a single color channel. Each image has a couple of regions of pixels that I would like to calculate the mean. Is there a function that can identify these regions of interest and quantify its mean automatically?
Also is there a function in Matlab that could count the regions within an iamge based on its RGB?
Thank you!!
Kind wishes,
Neo

Réponse acceptée

Image Analyst
Image Analyst le 8 Juin 2022
You need to create a binary image and then use regionprops
In short it's
props = regionprops(binaryImage, grayScaleImage, 'MeanIntensity');
allMeanIntensities = [props.MeanIntensity]
  8 commentaires
Image Analyst
Image Analyst le 21 Juin 2022
@Neo, glad it worked for you. Thanks for accepting the answer.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Segmentation and Analysis 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