How to compute 3D volume using Linearlization ?!
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello Everybody;
I want your help for solving a question for volume computation of a cone. Given a set of short axis images, we need to estimate the volume of this cone concerning about the slice thickness; inter-slice gap. assume that the shape is as you see in the attached image. I have to calculate the following:
- distance between the planes containing the contours
- the area of each contour
- the radius of a circle whose area = area of smallest contour
- the volume of each frustum
- the volume of the half sphere
- the total volume
Hint 1: to draw the contours(attached at a mat file) , use the following matlab code:
if true
% code
load('Contours.mat');
figure,hold on,
for i=1:8,
S=DataSet{i};
plot3(S(:,1),S(:,2),S(:,3));
end
Your help is highly appreciated...
6 Kommentare
Ced
am 25 Mär. 2016
What do you mean by BW image centroid? Not a vision person, sorry, so this might be a trivial question.
But you have the coordinates of the contours (saved in the mat file), so just do the same with them as you would with the BW image I guess.
Antworten (0)
Siehe auch
Kategorien
Mehr zu 3-D Volumetric Image Processing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!