Counting No. of objects of a Particular Shape
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I need a code in which I can get the number of objects of a particular shape, when the input is a tiff file. The Picture essentially contains a mixture of various shapes, mostly circles, squares, ellipses, rectangles and triangles. If I can get a code which would give me an output as number of each of these shapes it'll be great. I have found a code which can mark circles, squares and rectangles, but how to get the number. I'm new to matlab and hence help in as much detail as possible will be highly appreciated, Thanx.
0 Commenti
Risposte (3)
Terry
il 19 Mag 2012
I'd be interested in seeing the code which can mark circles, squares and rectangles
0 Commenti
Walter Roberson
il 19 Mag 2012
regionprops() to get the eccentricity and the bounding box. Circles, squares, and triangles will have different eccentricities. Squares vs rectangles can be determined by looking at the width and height of the bounding box: if they are equal then it is a square, and if it is not equal then it is a rectangle.
0 Commenti
Walter Roberson
il 20 Mag 2012
Your existing question is still here and still active, and is waiting for your response. Your duplicate question has been deleted. Please do not open duplicate questions: you can edit existing questions to add new information if you need to.
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!