フィルターのクリア

How to save point cloud data? (sfm)

4 ビュー (過去 30 日間)
soyoung shin
soyoung shin 2017 年 5 月 10 日
コメント済み: Yu Lan 2020 年 5 月 4 日
Hello.
I followed the guideline below and I got a 3D point cloud view.
My question is ' How to save this point cloud data?'. I want to use this point cloud to do a delaunay triangulation.
such as.. trisurf method.. I want to apply on the point cloud data.. please help me.. : )

回答 (1 件)

Harsh
Harsh 2017 年 5 月 12 日
Based on the example you referred to, the point cloud is an Object for storing a 3-D point cloud. For example the example uses this:
ptCloud = pointCloud(points3D, 'Color', color);
If you want to create a separate copy of a point cloud, you can use the MATLAB copy method. You can read more about this here under tips:
It does appear however, that you would like to save this data to use for further processing. For this, you can use the MATLAB "save" method that can be used to save specific variables to various file formats such as ".mat" or ".txt". For example, after the above line, you can use the following line to save the workspace variable to a mat file:
>> save('pointCloud.mat','ptCloud')
You can learn more about this here:
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 5 月 12 日
If you want to extract the xyz coordinates then
ptCloud.Location
will give them.
Yu Lan
Yu Lan 2020 年 5 月 4 日
If I want to save the point cloud file as the .ply or .pcd, is it possible?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePoint Cloud Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!