I am using below code to plot the Kinect point clouds in Matlab:
showPointCloud(pcloud, 'VerticalAxis', 'y', 'VerticalAxisDir', 'Down');
xlabel('X (m)');
ylabel('Y (m)');
zlabel('Z (m)');
Which give me this plot :
But I wish to plot it up to 1 m in Z value! How can I set it to display point clouds up to 1 m?