複数の座標にhold onを使わずにpointCloudクラスの情報を与えることはできますか??
Mostrar comentarios más antiguos
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 以外の方法で複数の座標を表示できないでしょうか??
コードは途中で止めてあります。いずれは、三次元すべてに情報を与えたいと考えています。
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre LIDAR および点群の処理 en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!