3D Point Cloud to 2D depth image
古いコメントを表示
Hi
I have a 3D point cloud.
Now I want to convert it to 2D depth image of say 240*320. Does anyone has anything to share?
It will be a good addition to Matlab.
Best Regards Wajahat
3 件のコメント
yifang huang
2018 年 10 月 23 日
is this question solved?
Guillermo
2020 年 9 月 12 日
Hi, You can use this function
Walter Roberson
2020 年 9 月 12 日
That contribution is what VahidB suggested 4 years ago.
回答 (2 件)
VahidB
2016 年 1 月 22 日
1 投票
7 件のコメント
henry henry
2016 年 11 月 13 日
how to get x , y and z from pointcloud?
Walter Roberson
2016 年 11 月 14 日
XYZ = YourPointCloud.Location; %Location property
X = XYZ(:,1); Y = XYZ(:,2); Z = XYZ(:,3);
rajyalakshmi k
2016 年 12 月 20 日
hi sir i am not able to store my point cloud image in .xyz or .ply format.so i need small attention on my question "how to give point cloud location (XYZ = YourPointCloud.Location)";"
Walter Roberson
2016 年 12 月 20 日
rajyalakshmi k, What format is your point cloud in?
rajyalakshmi k
2016 年 12 月 21 日
編集済み: Walter Roberson
2016 年 12 月 21 日
Thank u sir for your fast response,
after executing this the final output is point cloud only but while saving that image i am not able to save in .xyz or .ply format (bcoz point cloud should be in .xyz or .ply only) anyway it is saving in .fig format only. but i need to extract x,y,z coornidates for any pointcloud image for further processing like getting surface model for that point cloud data. so please give any solution for my question.
Walter Roberson
2016 年 12 月 21 日
編集済み: Walter Roberson
2016 年 12 月 21 日
https://www.mathworks.com/help/vision/ref/pcwrite.html writes to ply format.
When you get down to the part of the example that has
% Create the point cloud
ptCloud = pointCloud(points3D, 'Color', color);
then ptCloud.Location will exist.
rajyalakshmi k
2016 年 12 月 21 日
Thank you sir
Meghana Dinesh
2015 年 11 月 3 日
0 投票
カテゴリ
ヘルプ センター および File Exchange で Point Cloud Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!