Issue loading file in LiDAR labeler using custom point cloud reader
古いコメントを表示
I am trying to use MATLAB's lidar labeler app to manually label some ground truth data. The lidar data I have is stored in a custom format, and I would like to use my own ground removal algorithm. So I chose to use the 'Custom Point Cloud' option as detailed here.
regardless of the sourcename I try to give it, the function call shown below,
lidarLabeler(sourceName,@FunctionHandle,timestamps);
results in the following error: "filename" must be a string scalar or character vector. Error in lidar.internal.lidarLabeler.lidarLabelerInternal
To ensure sourceName is of the proper data type, I tried doing the following:
fileFilter = '*.pcap';
[File_name,Directory]= uigetfile(fileFilter,'Open a .pcap file');
fileName = [Directory File_name];
and I tried passing fileName to the lidar labeLabeler and still have the same issue. Please advise on how to properly pass the file name to lidar labeler?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Labeling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!