Detection of 3D blobs with flat surfaces
3 次查看(过去 30 天)
显示 更早的评论
I have a 3D gray-scale array that represents a bag with several objects inside. I need to find (segment) any object with flat surface/s in the bag. Knowing the approximate intensity range of these objects, I binarized the volume, and removed objects with volumes below a threshold.
The result was getting some of those objects as individual blobs and some attached to nearby objects.
Now, I would like to detect blobs with flat surfaces. Any suggestion?
2 个评论
采纳的回答
Image Analyst
2019-8-26
编辑:Image Analyst
2019-8-26
Try convhulln() and extract any blob that has points on the convex hull.
4 个评论
更多回答(1 个)
darova
2019-8-26
What about boundary()?
Once you have boundary faces: find all neighbour faces for each node
If angles between surfaces is about zero then we have a flat face
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!