Matlab AppDesigner PointCloud not appearing on UIAxes

2 次查看(过去 30 天)
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');

采纳的回答

Cris LaPierre
Cris LaPierre 2022-3-22
编辑:Cris LaPierre 2022-3-22
This answer contains some links that may be helpful as well.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by