Export Lidar Labels for training neural network
4 ビュー (過去 30 日間)
古いコメントを表示
Good day,
Is it possible to export the Lidar labels or the labelled files from the Lidar Toolbox to open them with Python?
The goal is to use the labels in Python as training and test data to create a neural network that recognises people in 3D Lidar point clouds.
Is there a similar example?
0 件のコメント
回答 (1 件)
Smit
2023 年 2 月 9 日
Hi,
I understand you want to export Lidar labels generated in MATALB so you can use them in Python.
You may be able to export the label data using functions like “writetimetable”, and the label definitions in a JSON file using “jsonencode” function. An example of this could be
data = groundTruthLidar(dataSource,labelDefs,lidarData);
% Write label definitions in a JSON file
jsonText = jsonencode(data.LabelDefinitions);
writelines(jsonText, 'LabelDefinitions.json');
% Write label data in Excel file
writetimetable(data.LabelData, 'LabelData.xlsx');
You can then use appropriate Python libraries to import this data in your Python code.
You could also possibly use the Lidar Labeler app in MATLAB to export labels. You can open the app using the following command
lidarLabeler;
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Labeling, Segmentation, and Detection についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!