How to prepare a cell array of point Cloud objects?
이전 댓글 표시
From the Lidar point cloud how the lidar data is stored as a cell array of pointCloud objects.
My steps to perform automatic bounding box formation are.,
1- PCAP input to the MATLAB to see the point cloud -----> Done
2-Segment ground points from organized lidar data---------> Done as per the example given as MATLAB Examples.
3- Track Vehicles Using Lidar: From Point Cloud to Track List----> Done
4- Bounding Boxes formation of the Ground Truth Lebeling - From the example "https://in.mathworks.com/help/driving/examples/track-vehicles-using-lidar.html#responsive_offcanvas" i am not clear to below items.
% Load data if unavailable. The lidar data is stored as a cell array of % pointCloud objects
if ~exist('lidarData','var'). % -------> Here to create "lidarData" i will input the PCAP or the csv ?%
% Specify initial and final time for simulation.
initTime = 0;
finalTime = 35;
[lidarData, imageData] = loadLidarAndImageData(initTime,finalTime);
end
I would very much appreciate any help! I think that I really don't understand how the PointCloud2 messages are formatted...
댓글 수: 3
Adam Danz
2019년 9월 3일
Tips to get help in this forum:
SWAGAT SAHOO
2019년 9월 5일
Adam Danz
2019년 9월 5일
"I think that I really don't understand how the PointCloud2 messages are formatted"
since I don't have personal experience I can only refer you to the documentation.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Detection and Tracking에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!