How to smooth a 3D object..?

2 次查看(过去 30 天)
Lalit Patil
Lalit Patil 2012-12-3
I have This text file..
fileID = fopen('data.txt');
C = textscan(fileID, '%f %f %f');
fclose(fileID);
X=cell2mat(C(:,1));
Y=cell2mat(C(:,2));
Z=cell2mat(C(:,3));
patch(X,Y,Z,'R')
view(3)
axis equal off tight vis3d; camzoom(1.2)
colormap(spring)
rotate3d on
From this code i am creating a 3D of an object, now i want to fill the image surface so that it looks like a real smooth object.
So, how to do it..?

回答(1 个)

Walter Roberson
Walter Roberson 2012-12-3
I looked at your data, and I think patch() is really giving the wrong idea of it. If you scatter3() it, then you get a fairly different 3D view, more like a 3D T shape whereas patch fills in part of the T angle giving you large triangles defined completely by their edges (with no interior points defined.)
It should be obvious by examining the data and seeing it jump from 752 back to 1 on the X coordinate that using a single patch is not appropriate. Perhaps using one patch per cycle of X coordinates.
The method for creating a smooth surface is going to depend on which representation is correct. Is it like a T with a door-latch type opening on the crossbar, or are those triangles really there even though they have no interior points?
  1 个评论
Lalit Patil
Lalit Patil 2012-12-3
plot3() and scatter3() both are giving a wrong result to me.. Patch gives satisfactory result..
My object is of this kind..

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by