calculate surface area from xy coordinates (R2017a)

20 views (last 30 days)
hello, so I have this x y coordinates of a foot from 3d scanning (graphical form as shown in the picture), can I use matlab to calculate the surface area based on the division of the area like this (ex: midfoot, heel)? or should i divide the area first and then calculate the area later? thank you in advance

Answers (1)

KSSV
KSSV on 22 Oct 2020
Let (x,y) be your coordinates....
idx = boundary(x,y) ;
bx = x(idx) ; by = y(idx) ;
A = polyarea(bx,by) ;

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!