Greetings, how to extract each object and calculate their area based on example picture shown below.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
alice shaarveina
am 14 Mär. 2018
Kommentiert: alice shaarveina
am 15 Mär. 2018

2 Kommentare
Image Analyst
am 14 Mär. 2018
How is this different than your other post https://www.mathworks.com/matlabcentral/answers/387906-greetings-how-to-calculate-area-and-parameter-of-cell#comment_544813
Akzeptierte Antwort
KALYAN ACHARJYA
am 14 Mär. 2018
k=imread('cell.bmp');
BW1=im2bw(k);
BW2=imcomplement(BW1);
% Apply condition calculate the pixels in certain boundary area (objects)
% Once you find white pixels, sum all upto certain boundary (Hint from given image)
% following is the code for all objects
nWhite_pixels=sum(BW2(:));
[rows columns depth]=size(BW2);
percentage_tot_area=((nWhite_pixels)/(rows*columns))*100;
fprintf('#The Percentage covered by all object is %f',percentage_tot_area);
disp('%');
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!