How to filter certain points out of a 3D point cloud?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lucca k
el 26 de Oct. de 2015
Comentada: lucca k
el 3 de Nov. de 2015
Hello everybody,
I got a 3D point cloud which is already in the world coordinate system. I got the data from a Kinect sensor. As I want to build an occupancy grid out of the data, I need to filter out all points with Z=0. I need to do this because Z is the vertical and if Z = 0, there is no obstacle on the way. To get the point cloud I used
xyzPoints = depthToPointCloud(depthImage,depthDevice);
So in the end I want to have just the points left I can plot into the 2D grid.
Thank you very much for any help!
0 comentarios
Respuesta aceptada
Bjorn Gustavsson
el 26 de Oct. de 2015
Assuming that xyzPoints are an [nPoints x 3] array you might do this:
xyzPoints(xyzPoints(:,3)==0,:) = [];
HTH
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Point Cloud Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!