Effacer les filtres
Effacer les filtres

Using regionprops to change intensity of blobs

2 vues (au cours des 30 derniers jours)
RIshabh Golchha
RIshabh Golchha le 11 Sep 2017
I am having a gray scale image which has certain blobs. The region apart from these blobs has intensity of 0. Using regionprops() I can extract various properties like Area, mean intensity of each blob.
Based on these mean intensity of a blob I want to modify the intensity of that blob. Any ideas on how I can achieve that?

Réponse acceptée

Matt J
Matt J le 11 Sep 2017
Modifié(e) : Matt J le 11 Sep 2017
Using regionprops you can also extract the PixelIdxList of the different blobs. You can use that to modify the pixels in the desired region,
S=regionprops(...,'PixelIdxList');
myImage(S(i).PixelIdxList)= new_Intensities;
  1 commentaire
Steve Eddins
Steve Eddins le 11 Sep 2017
For an example that illustrates Matt's answer, see my 21-Aug-2007 blog post. Look for the code following "Here's a loop that replaces the pixel values for each coin by the mean pixel value for that coin."

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 11 Sep 2017
You're going to need to get the MeanIntensity of course, and the PixelIdxList. So...
[labeledImage, numBlobs] = bwlabel(binaryImage);
props = regionprops(labeledImage, grayImage, 'MeanIntensity', 'PixelIdxList');
% Replace each blob with some other intensity based on the blob's mean intensity
for k = 1 : numBlobs
thesePixelIndexes = props(k).PixelIdxList;
thisMeanIntensity = props(k).MeanIntensity;
if thisMeanIntensity < 100
% If mean intensity is less than 100,
% replace all pixels in the blob in the original gray scale image with a value of 1.
grayImage(thesePixelIndexes) = 1;
elseif thisMeanIntensity < 200
% If mean intensity is less than 200,
% replace all pixels in the blob with a value of 2.
grayImage(thesePixelIndexes) = 2;
else % thisMeanIntensity <= 255
% If mean intensity is more than 200,
% replace all pixels in the blob with a value of 3.
grayImage(thesePixelIndexes) = 3;
end
end
Change the numbers and add "if" blocks if you have more and/or different ranges for your mean intensities and desired replacement gray levels.
If you want, you can replace the values in the binary image, the labeled image, or create an entirely new image altogether.

Catégories

En savoir plus sur Convert Image Type 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