How to prepare the datastore for point cloud classifications

3 vues (au cours des 30 derniers jours)
EMMANUELE BARBERI
EMMANUELE BARBERI le 21 Déc 2020
Hi everyone.
I want to use Deep Learning for point clouds' classification starting with at least one of extensions I have available (.ply, .bin, .csv, or .mat). I found this code https://it.mathworks.com/help/vision/ug/train-classification-network-to-classify-object-in-3-d-point-cloud.html that might be useful to me but i have some problem with the creation of the datastore. In fact, I can't insert the labels correctly and the code already fails at the "preview (dsTrain)": the second box is not "1x1 categorical" but undefined. My point clouds files are 32x32x32 cell, how can I prepare correctly the datastore?
Thanks

Réponses (1)

Shashank Gupta
Shashank Gupta le 4 Jan 2021
Hi EMMANUELE,
Currently lidar datastore can be formed in the same way other datastores are form through fileDatastore function, I am not sure what extension you are trying to import but .csv, .mat or .ply can easily imported through csvread/readTable, load or pcread. For .bin file you may explicitly need to write a custom reading function in fileDatastore to import. Even Labels are handled in the same way all datastore in MATLAB does, it iterate over all the subfolder in the given folder and assign a category to each one of them. Refer to the same fileDatastore function to understand how label is imported in general. You can also refer to this which is one of the example implementation for lidar point cloud importing with labels.
Hope it helps.
Cheers
  1 commentaire
EMMANUELE BARBERI
EMMANUELE BARBERI le 11 Jan 2021
Modifié(e) : EMMANUELE BARBERI le 11 Jan 2021
Hi, thanks for your help.
I modified something in the function you showed me and now I obtain the predefinite form of datastore {(pointCloud) (label)}, but at line 5 ( the link I sent: "labels = readall(dsLabels);") Matlab gives me the error in the picture and I'm unable to solve it. Some advice?
Thanks

Connectez-vous pour commenter.

Catégories

En savoir plus sur Labeling, Segmentation, and Detection dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by