How to convert my data to fit the 'Build Map and Localize Using Segment Matching' example?
조회 수: 5 (최근 30일)
이전 댓글 표시
hello
I am following the matlab example from https://kr.mathworks.com/help/lidar/ug/build-a-map-and-localize-using-segment-matching.html#mw_rtc_BuildMapAndLocalizeUsingSegmentMatchingExample_M_27FCF3DD
I have my own 'Velodyne-VLP-16-Data.pcap' data with 1,537 frames collected using Velodyne Puck Lite sensor.
But since I don't know what the example data in this example looks like, I don't know how to apply my own data.
How can I convert my data to fit this example?
thank you.
댓글 수: 4
답변 (1개)
Garmit Pant
2024년 7월 12일
Hello Seohyeon
In the example that you are following, the lidar data is being read from a PNG file. Given that you have a PCAP-file, you can leverage MATLAB’s built-in function “velodyneFileReader” to read the point clouds from the file.
Kindly use the “velodyneFileReader” function along with the “readFrame” function to read the point cloud object which can then be used with “segmentLidarData” function. The following code snippet demonstrates how to read point cloud data from a PCAP-file and then visualise it.
p = velodyneFileReader("2023-03-27-13-34-03_Velodyne-VLP-16-Data (Frame 0 to 100).pcap",'VLP16')
timeDuration = p.StartTime + duration(0,0,1,Format='s');
ptCloudObj = readFrame(p,timeDuration);
figure
pcshow(ptCloudObj)
For further understanding, refer to the following MathWorks Documentation:
- Refer to the ‘Input Arguments section of the “segmentLidarData” function: https://www.mathworks.com/help/vision/ref/segmentlidardata.html
- Refer to the ‘Examples’ section: https://www.mathworks.com/help/vision/ref/velodynefilereader.html
I hope you find the above explanation and suggestions useful!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Point Cloud Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!