How to read and visualize my lidar data?
25 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kevin Chng
am 16 Apr. 2019
Beantwortet: TripleSSSS
am 30 Apr. 2020
Hi All,
My lidar data is in bin file :
Anyone here has any idea how to read my lidar data in MATLAB?
3 Kommentare
KSSV
am 16 Apr. 2019
Actually after reading the data using fread it will be reshaped to required dimension using reshape. To achieve this format of the file should be known.
Akzeptierte Antwort
KSSV
am 16 Apr. 2019
Is this fine?
fid = fopen('n008-2018-08-01-15-16-36-0400__LIDAR_TOP__1533151061547455.pcd.bin', 'r');
data = fread(fid,'single');
fclose(fid);
data = reshape(data,[],2) ;
plot(data(:,1),data(:,2),'.r')
0 Kommentare
Weitere Antworten (1)
TripleSSSS
am 30 Apr. 2020
Read the data as a float using fread.
For nusences dataset each point in the point cloud contains 5 floats. reshape the data and use pcshow for display.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Image Processing and Computer Vision finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!