How to count the number of object present in binary image?

11 Ansichten (letzte 30 Tage)
Hanuman Wable
Hanuman Wable am 20 Dez. 2013
Verschoben: DGM am 13 Feb. 2023
Hello sir, i am going to count the number of object present in binary image. so any of you please suggest me regarding counting object.because i have problem during count such object. thank you
  1 Kommentar
sanhita das
sanhita das am 7 Apr. 2018
Verschoben: DGM am 13 Feb. 2023
sir,i want to show paragraphs from document image.pls tell the algoritm name. I attach a input file.and how to extract paragraph from this image.please help me

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Sabarinathan Vadivelu
Sabarinathan Vadivelu am 20 Dez. 2013
Bearbeitet: Sabarinathan Vadivelu am 20 Dez. 2013
You can use bwconncomp.
cc = bwconncomp(yourBinaryImage,4);
number = cc.NumObjects;

Image Analyst
Image Analyst am 20 Dez. 2013
Here's yet another way
[labeledImage, numberOfObject] = bwlabel(binaryImage);
  3 Kommentare
romaisa sabih
romaisa sabih am 18 Mai 2016
sir,i have to count the active fingers in my image.how can i do this ? please help.

Melden Sie sich an, um zu kommentieren.


David Sanchez
David Sanchez am 20 Dez. 2013
If you are planning to do something with those objects, you could be interested in using regionprops. Besides the number of objects within the image, you can retrieve any other property of the objects, such as the area, centroid, orientation,....
BW = imread('text.png');
s = regionprops(BW, 'Area');
N_objects = numel(C);
For all the options, take a look at
doc regionprops
  2 Kommentare
muhamad zulhairi zailan
muhamad zulhairi zailan am 7 Nov. 2018
hello sir, how to count the object using area parameter, which mean i have the image and i want to count the object in that image using range of area parameter and i want to count the object refer to it area parameter? thanks sir your reply very appreciated.
Image Analyst
Image Analyst am 7 Nov. 2018
I don't know what you want. By the way, the code above is not correct. It should say
N_objects = length(s)
That number will be the same regardless which attributes you measure (area, perimeter, or whatever).

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by