Matlab AppDesigner PointCloud not appearing on UIAxes

2 visualizaciones (últimos 30 días)
Bruno Neto
Bruno Neto el 22 de Mzo. de 2022
Editada: Cris LaPierre el 22 de Mzo. de 2022
I'm trying to plot a point cloud into a UIaxes on app designer but it displays on the background panel/figure and not only on the axes.
This is my code:
global DEPTHdevice
global RGBdevice
colorDevice = RGBdevice;
depthDevice = DEPTHdevice;
colorDevice();
depthDevice();
colorImg = getsnapshot(colorDevice);
depthImg = getsnapshot(depthDevice);
ptCloud = pcfromkinect(depthDevice, depthImg, colorImg);
xlabel(app.UIAxesPointCloud, 'X(m)');
ylabel(app.UIAxesPointCloud, 'Y(m)');
zlabel(app.UIAxesPointCloud, 'Z(m)');
pcshow(ptCloud,'Parent',app.UIAxesPointCloud,'VerticalAxis','Y','VerticalAxisDir','Down');

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 22 de Mzo. de 2022
Editada: Cris LaPierre el 22 de Mzo. de 2022
This answer contains some links that may be helpful as well.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by