马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
基于ct图像的三维重建
三维数据集已做好 存为face.mat
重建程序如下 :
load face
figure('position',[0,0,500,500],'color','white')
Ds=smooth3 (D);
hiso=patch(isosurface(Ds,3),'Facecolor',[1,.75,.65],'EdgeColor','none');
hcap=patch(isocaps(D,3),'FaceColor','none','EdgeColor','none');
colormap(map)
view(125,30);
axis tight
daspect([1,1,1.6])
light('color',[1,1,0],'style','local','position',[0,10,1.5])
lightangle(145,30);
set(gcf,'Renderer','zbuffer')
lighting phong
material shiny
isonormals(Ds,hiso)
set(hcap,'AmbientStrength',0.6)
set(hiso,'SpecularColorReflectance',1,'SpecularExponent',200)
box off
axis off
错误提示:::
??? Undefined function or variable "map".
Error in ==> CT_3 at 6
colormap(map)
怎么修改?请指教。
[ 本帖最后由 eight 于 2008-4-14 21:08 编辑 ] |