Calculate the volume of 3D models
2 次查看(过去 30 天)
显示 更早的评论
Hello,
How to calculate the volume of these 3D models using vertices and faces and edges?
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
Thanks.
1 个评论
Roger Stafford
2013-9-13
You need depth information to get the volume and that is missing in your images. There is no way to do what you ask as things stand.
回答(1 个)
Simon
2013-9-13
Hi!
You can calculate the volume if you create a 3d mesh (e.g. with tetrahedrons) of the models. But this is not trivial!
If you have this you just sum up the volumes of all tetrahedrons. This is easily done using
V = 1/6 * dot(a, cross(b,c));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!