On using 'regionprops'?
1 view (last 30 days)
Show older comments
Deepak Sivadas
on 21 Nov 2018
Answered: Image Analyst
on 21 Nov 2018
Hi,
Stats = regionprops(L,'all');
for instance, L is a labelled binary image of 256x256.
What determines the size of Stats ? Pls respond.
Thanks,
Deepak
0 Comments
Accepted Answer
Image Analyst
on 21 Nov 2018
The length of the stats structure is the same as the number of blobs in your image.
[L, numberOfBlobs] = bwlabel(binaryImage);
stats = regionprops(L, 'All');
fprintf('There are %d blobs in the labeled image.\n', numberOfBlobs);
fprintf('There are structures, in the stats structure array.\n', length(stats));
You can see that length(stats) will be the same as numberOfBlobs.
0 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!