複数の座標にhold onを使わずにpointCloudクラスの情報を与えることはできますか??
Show older comments
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 以外の方法で複数の座標を表示できないでしょうか??
コードは途中で止めてあります。いずれは、三次元すべてに情報を与えたいと考えています。
Accepted Answer
More Answers (0)
Categories
Find more on LIDAR および点群の処理 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!