how to set projection of point cloud visualization?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Valter Hesselmark
am 21 Dez. 2018
Kommentiert: Valter Hesselmark
am 7 Jan. 2019
I'm using pcplayer to visualize a colored point cloud.
player1 = pcplayer([-1 1],[-1 1],[-1 1]);
view(player1,vertices,color)
I cannot find a way to set projection and camera angle for pcplayer - is it possible? If not, is there another solution?
0 Kommentare
Akzeptierte Antwort
Anand
am 7 Jan. 2019
You need to use the axes of the pcplayer object.
For example,
% Create a pcplayer viewer
player = pcplayer([0 1], [0 1], [0 1]);
% View a point cloud
view(player, rand(1000,3));
% Query camera view angle
camva(player.Axes)
% Set camera view angle
camva(player.Axes, 15)
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Point Cloud Processing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!