Using regionprops to change intensity of blobs

2 次查看(过去 30 天)
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?

采纳的回答

Matt J
Matt J 2017-9-11
编辑:Matt J 2017-9-11
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 个评论
Steve Eddins
Steve Eddins 2017-9-11
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."

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2017-9-11
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.

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by