Determine the percentage of black pixels within a circle
1 次查看(过去 30 天)
显示 更早的评论
Hello, I am trying to determine the total number of pixels within the blue circle (radius = 80 dimensionless units) and the percentage of them that are black. I have multiple files that I would like to analyze, and I wanted to code a way to read in each picture in the folder one by one and then store each image name with its coresponding percentage of black pixels in a matrix. The image sizes are not standardized since they were created using the snipping tool
I have tried to implement the methods in shown in the solution links but each one is more piece of what I need and Im struggling to put them all together. Any help would be greatly appreciated.
pathname = uigetdir;
allfiles = dir(fullfile(pathname,'*.png'));
image_percent = [];
for i=1:size(allfiles,1)
x=imread([pathname '\\' allfiles(i).name]);
image_percent=[image_percent; x]; % storage
end
6 个评论
darova
2020-5-18
Do you know where the center circle is?
A = imread('image.png');
I = im2bw(A,0.1);
[m,n] = size(I);
[x,y] = ndgrid(1:m,1:n);
I1 = hypot(x-mean(x(:)),y-mean(y(:))) < 150;
imshowpair(I,I1)
回答(1 个)
Image Analyst
2020-5-18
Please post the original image, not a screenshot. Is the actual image a real gray scale image, or is it that RGB computer graphics diagram? Then, how are you getting the black and white (binary, logical) image from the original image?
Anyway, once you have the image segmented so that you have a mask with only black pixels and white pixels, then you can use sum() and nnz() to do the count. Assume circleMask is the mask of the overall, outer circle, and mask is your segmented, binary image of stuff inside you're interested in, then
numPixelsInCircleMask = sum(circleMask(:))
numWhitePixelsInMask = nnz(mask)
numBlackPixelsInMask = nnz(~mask) % or (numPixelsInCircleMask - numWhitePixelsInMask)
whiteAreaFraction = numWhitePixelsInMask / numWhitePixelsInMask
blackAreaFraction = 1 - whiteAreaFraction
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!