segmentGro​undFromLid​arData for pcd file

1 次查看(过去 30 天)
Hello,
I want to preprocess some lidar data in .pcd format. I tried "segmentGroundFromLidarData" algorithm to segment the groud but this code is written for .pcap format. In pcd fromat it has (m by n matrics size) on the other hand, pcap file has (m by n by 3 matrics) size.
Any thought of how to format pcd file into pcap file? or any other matlab libraries to deal with pcd file?
SIncerely,
Ahmed

回答(1 个)

Mahesh Taparia
Mahesh Taparia 2020-5-11
Hi
The input of the function segmentGroundFromLidarData will be a point cloud. You mentioned that your file is having mxn array. Are you using only intensity matrix as input? But the point cloud data will be in structure format and that structure will be the input to the function. For more information, you can refer to this example in documentation page.
  3 个评论
Mahesh Taparia
Mahesh Taparia 2020-5-12
It seems you are having an unorganised point cloud data. You can use pcfitplane function, refer to this documentation. You can refer to this question which is already answered in the community.
Pavan Kumar B N
Pavan Kumar B N 2021-6-16
%% for PCAP files
veloReader = velodyneFileReader('file.pcap','VLP16');
ptCloudObj = readFrame(veloReader,44);
%% for PCD Files you use pcread
ptCloudObj = pcread('file.pcd');
ptCloudSegGround = pcdSegmentGround(ptCloudObj);
figure
pcshow(ptFilCloud)
hold on
plot(ptCloudSegGround)
function [model] = pcdSegmentGround(ptCloudSrc)
disp(size(ptCloudSrc.Location))
% Use pcfitplane
maxDistance = 0.2;
referenceVector = [0 0 1];
model = pcfitplane(ptCloudSrc, maxDistance, referenceVector)
end

请先登录,再进行评论。

类别

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