How to prepare the datastore for point cloud classifications

3 visualizaciones (últimos 30 días)
EMMANUELE BARBERI
EMMANUELE BARBERI el 21 de Dic. de 2020
Editada: EMMANUELE BARBERI el 11 de En. de 2021
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

Respuestas (1)

Shashank Gupta
Shashank Gupta el 4 de En. de 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 comentario
EMMANUELE BARBERI
EMMANUELE BARBERI el 11 de En. de 2021
Editada: EMMANUELE BARBERI el 11 de En. de 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

Iniciar sesión para comentar.

Categorías

Más información sobre Parallel and Cloud en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by