2012-11-25 3 views

답변

0

Matlab은 대다수의 3D 플롯 유형을 지원합니다. Mathworks 페이지는 here입니다. 귀하의 데이터에 따라, 나는 slice가 당신을 위해 일할 것이라고 생각합니다.

0

데이터 세트가 명암 (dicom 파일) 인 경우. 사용해보기 :

p = patch(isosurface(v(1:10:end,1:10:end,1:10:end),0)); 

% change 10 to 1 for full resolution and increase calculation time 
% v is your 3D matrix 

% isosurface will convert your data to vertices and faces 
% patch will draw the surrounding surfaces 

view(3) 
camlight 
lighting gouraud