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!