필터 지우기
필터 지우기

What does the axes in my plot mean?

조회 수: 2 (최근 30일)
Shwetabh Singh
Shwetabh Singh 2022년 8월 17일
댓글: Walter Roberson 2022년 8월 23일
I used pcshow to plot two point clouds taken from another software. the plot's axes has numbers that dont really make sense to me, so I wanted to know what does pcshow plot on the axes?
  댓글 수: 7
Shwetabh Singh
Shwetabh Singh 2022년 8월 22일
lasReader1 = lasFileReader("rtk_cloud_1.las")
ptCloud1 = readPointCloud(lasReader1);
lasReader2 = lasFileReader("rtk_cloud_2.las")
ptCloud2 = readPointCloud(lasReader2);
lasReader3 = lasFileReader("rtk_cloud_3.las")
ptCloud3 = readPointCloud(lasReader3);
figure
pcshow(ptCloud1.Location,[1,0,0])
view(0,90)
this is the code i used to plot this image. .las was the lidar scan file which I got from lidar's software.
Walter Roberson
Walter Roberson 2022년 8월 23일
pcshow() will use the coordinates as stored in the pointcloud ptCloud1 .
What shows up for
max(ptCloud1.Location(:))
min(ptCloud1.Location(:))

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

답변 (0개)

카테고리

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

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by