Counting No. of objects of a Particular Shape
显示 更早的评论
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.
回答(3 个)
Terry
2012-5-19
0 个投票
I'd be interested in seeing the code which can mark circles, squares and rectangles
Walter Roberson
2012-5-19
0 个投票
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.
Walter Roberson
2012-5-20
0 个投票
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!