calculate surface area from xy coordinates (R2017a)

23 Ansichten (letzte 30 Tage)
Grishelda Athallah
Grishelda Athallah am 22 Okt. 2020
Beantwortet: KSSV am 22 Okt. 2020
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

Antworten (1)

KSSV
KSSV am 22 Okt. 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!

Translated by