필터 지우기
필터 지우기

STL to Point cloud or Alpha shape

조회 수: 16 (최근 30일)
Alec York
Alec York 2017년 12월 29일
댓글: Alec York 2018년 8월 23일
Hello, I was wondering if there was a way to convert an imported STL file to a 3D point cloud or alpha shape. Thanks

채택된 답변

Joe Murphy
Joe Murphy 2018년 1월 2일
Hello Alec,
After importing an STL file to MATLAB (using any preferred method, such as the 'importGeometry' function), you can use the 'alphaShape' function to create a three-dimensional alpha shape using the geometric data imported from your STL:
shp = alphaShape(x,y,z)
where 'x', 'y' and 'z' correspond to the points of the shape in each dimension. In addition, if you have access to the Computer Vision System Toolbox, you can simply use the 'pointCloud' function to create a point cloud:
ptCloud = pointCloud(xyzPoints)
where 'xyzPoints' is a matrix with the x y and z point locations retrieved from your STL. You can read more about these functions and see some examples in the documentation below:
https://www.mathworks.com/help/matlab/ref/alphashape.html?s_tid=srchtitle
https://www.mathworks.com/help/vision/ref/pointcloud-class.html?s_tid=srchtitle
  댓글 수: 2
Atia Najafi
Atia Najafi 2018년 8월 23일
편집: Atia Najafi 2018년 8월 23일
Hello Joe, can you please expand your answer? my problem is that after I imported stl file, do not know how create point cloud, how should define x, y ,z in following code, do not know what is wrong with it any help is appreciated
model = createpde(3);
>> importGeometry(model,'Part1.stl');
>> shp = alphaShape(x,y,z)
Undefined function or variable 'x'.
Alec York
Alec York 2018년 8월 23일
The easiest way I found to do it was to save the STL file in ASCII format. Rename to a text document, import the points and finally remove all the duplicate points

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Point Cloud Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by