- V=pointCloud(xyzPoints)において、xyzPoints(3次元座標点)を複数の点で構成しておくか
- VのpointCloud のプロパティLocationに複数の点群を書き込むか(V.Location)
- pcmerge を使って、3次元点群をマージする
複数の座標にhold onを使わずにpointCloudクラスの情報を与えることはできますか??
1 view (last 30 days)
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 以外の方法で複数の座標を表示できないでしょうか??
コードは途中で止めてあります。いずれは、三次元すべてに情報を与えたいと考えています。
0 Comments
Accepted Answer
Yoshio
on 30 Sep 2019
こちらにありますように、pointCloudは指定された3次元座標点を用いて、点群オブジェクトを作成するもので、hold onで表示したとしても、点群オブジェクトとは無関係なので、点群オブジェクトにデータを与えることはできません。
点群オブジェクトに複数のデータを与えるには、
などの方法があると思います。
いずれにせよ、まずhold onの機能と、点群オブジェクトについて、理解されてから先に進まれることをお勧めします。
0 Comments
More Answers (0)
See Also
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!