Effacer les filtres
Effacer les filtres

Matlab AppDesigner PointCloud not appearing on UIAxes

2 vues (au cours des 30 derniers jours)
Bruno Neto
Bruno Neto le 22 Mar 2022
Modifié(e) : Cris LaPierre le 22 Mar 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');

Réponse acceptée

Cris LaPierre
Cris LaPierre le 22 Mar 2022
Modifié(e) : Cris LaPierre le 22 Mar 2022
This answer contains some links that may be helpful as well.

Plus de réponses (0)

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by