フィルターのクリア

How to extract the elements of Point Cloud in matlab?

5 ビュー (過去 30 日間)
Naveed
Naveed 2024 年 2 月 29 日
回答済み: Pooja Kumari 2024 年 5 月 8 日
Hi there!
I hope everyone's doing great.
I'm here to leave a message and i belive that somone help me.
I'm a student andd the teacher gave me a project which is "Data Hiding Using 3D image as cover".
I choosed the 3D image is Point Cloud.
So, the question is that how to extract/access the elements of point cloud in matlab?

回答 (1 件)

Pooja Kumari
Pooja Kumari 2024 年 5 月 8 日
Hello Naveed,
I understand you wanted to extract/access the elements of pointcloud in MATLAB.
To extract or access elements of a point cloud in MATLAB:
  • Location Data: Access XYZ coordinates.
locations = ptCloud.Location;
  • Color Data: Access RGB color values if available.
colors = ptCloud.Color;
  • Accessing Normal Vectors: Normals, if available, are stored in the .Normal property.
  • Loading a Point Cloud and Reading point cloud using "pcread" function.
You cab refer to the below documentation for more information on Pcread:
You can refer to the below documentation for more information on Point cloud:

カテゴリ

Help Center および File ExchangeEncryption / Cryptography についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by