3D-Object Classfication Using Lidar Point Colud Data I am getting error: Unrecognized function or variable 'download........'

4 views (last 30 days)
I am working on object classfication using Lidar Point Cloud Data, but when try to download Lidar Point Cloud Data I am taking error like 'Unrecognized function or variable 'helperDownloadPandasetData'. And also I am taking same error for other Lidar Point Cloud data, like Unrecognized function or variable 'downloadSydneyUrbanObjects'.
I have academic licanse I am student.
Functions;
outputFolder = fullfile(tempdir,'Pandaset');
lidarURL = ['https://ssd.mathworks.com/supportfiles/lidar/data/' ...
'Pandaset_LidarData.tar.gz'];
helperDownloadPandasetData(outputFolder,lidarURL);

Answers (1)

Divya Gaddipati
Divya Gaddipati on 11 May 2021
I assume you are following this example, Lidar 3-D Object Detection Using PointPillars Deep Learning, as I see that this example uses the mentioned helper function.
As the helper function is part of the live script from the example, you'll be able to run it only inside the live script.
1. Open the live script using the following command:
openExample('deeplearning_shared/Lidar3DObjectDetectionUsingPointPillarsExample')
2. Click on the code snippet in the Download Lidar Data Set section.
3. Click on 'Run Section' on the toolstrip at the top. This should let you run this particular section.
If you'd like to use the helper function outside the live script, I'd suggest you create an individual function script and copy the content of the helperDownloadPandasetData in this file and save it in your working directory.

Categories

Find more on Labeling, Segmentation, and Detection in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!