Is there a substitute for pcshow()?

2 visualizaciones (últimos 30 días)
lucca k
lucca k el 19 de Oct. de 2015
Respondida: Dima Lisin el 31 de Oct. de 2015
Hello,
I got a 3D point cloud with " xyzPoints = depthToPointCloud(depthImage,depthDevice)". As I only have 2015a "pcshow" doesn't work. Is there a substitute command?
Thanks in advance!
  4 comentarios
lucca k
lucca k el 22 de Oct. de 2015
pcshow() was implemented in 2015b. As I only have access to 2015a it can't work for me I think.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 19 de Oct. de 2015
xyz = get(xyzPoints, 'location');
scatter3(xyz(:,1), xyz(:,2), xyz(:,3))
However, please show size(xyz) after the get(), as there is a different packing of values that might apply.
  21 comentarios
lucca k
lucca k el 31 de Oct. de 2015
hey walter, it works now with that code:
showPointCloud(xyzPoints, 'VerticalAxis', 'y', 'VerticalAxisDir', 'down');
xlabel('X (m)');
ylabel('Y (m)');
zlabel('Z (m)');
Thank you very much for your help!

Iniciar sesión para comentar.

Más respuestas (1)

Dima Lisin
Dima Lisin el 31 de Oct. de 2015
In R2015a the equivalent function is called showPointCloud.

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!

Translated by