필터 지우기
필터 지우기

Matlab AppDesigner PointCloud not appearing on UIAxes

조회 수: 2 (최근 30일)
Bruno Neto
Bruno Neto 2022년 3월 22일
편집: Cris LaPierre 2022년 3월 22일
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