function output = getTriangulation(obj) volume = bwmorph3(obj.volume,'remove'); [X,Y,Z] = ind2sub(size(obj.volume),find(volume)); output = delaunayTriangulation(X,Y,Z); end