複数の座標にhold onを使わずにpointCloudクラスの情報を与えることはできますか??
이전 댓글 표시
clear;clc
for i=0:0.2:1
for j=0:0.2:1
for k=0:0.2:1
V1=pointCloud([i 0 0],'Color',[0 0 255],'Intensity',[1]);
V2=pointCloud([i 1 0],'Color',[0 0 255],'Intensity',[1]);
end
end
end
figure;
pcshow(V1)
複数の三次元座標にpointCloudクラスの情報を与えたいと考えています。
しかし、hold on 以外の方法で複数の座標を表示できないでしょうか??
コードは途中で止めてあります。いずれは、三次元すべてに情報を与えたいと考えています。
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 LIDAR および点群の処理에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!