gtsam/matlab/+gtsam/plotFlyingResults.m

140 lines
3.1 KiB
Matlab
Raw Normal View History

2015-01-21 13:14:37 +08:00
function plotFlyingResults(pts3d, poses, posesCov, cylinders, options)
2015-01-20 05:18:18 +08:00
% plot the visible points on the cylinders and trajectories
% author: Zhaoyang Lv
import gtsam.*
holdstate = ishold;
hold on
2015-01-20 12:56:04 +08:00
if(options.writeVideo)
videoObj = VideoWriter('Camera_Flying_Example.avi');
videoObj.Quality = 100;
videoObj.FrameRate = options.camera.fps;
2015-01-21 03:06:39 +08:00
open(videoObj);
2015-01-20 12:56:04 +08:00
end
%% plot all the cylinders and sampled points
% now is plotting on a 100 * 100 field
figID = 1;
figure(figID);
2015-01-22 05:18:03 +08:00
view([30, 0]);
2015-01-20 12:56:04 +08:00
sampleDensity = 120;
cylinderNum = length(cylinders);
for i = 1:cylinderNum
[X,Y,Z] = cylinder(cylinders{i}.radius, sampleDensity * cylinders{i}.radius * cylinders{i}.height);
X = X + cylinders{i}.centroid.x;
Y = Y + cylinders{i}.centroid.y;
Z = Z * cylinders{i}.height;
2015-01-21 03:06:39 +08:00
h_cylinder = surf(X,Y,Z);
2015-01-22 05:18:03 +08:00
set(h_cylinder, 'FaceColor', [0 0 0.5], 'FaceAlpha', 0.2, 'EdgeColor', [0 0 1]);
2015-01-20 12:56:04 +08:00
hold on
end
2015-01-20 05:18:18 +08:00
2015-01-21 03:06:39 +08:00
drawnow;
if options.writeVideo
currFrame = getframe(gcf);
writeVideo(videoObj, currFrame);
end
2015-01-21 13:14:37 +08:00
%% plot trajectories and points
2015-01-20 12:56:04 +08:00
posesSize = length(poses);
2015-01-21 13:14:37 +08:00
pointSize = length(pts3d);
2015-01-20 12:56:04 +08:00
for i = 1:posesSize
if i > 1
plot3([poses{i}.x; poses{i-1}.x], [poses{i}.y; poses{i-1}.y], [poses{i}.z; poses{i-1}.z], '-b');
2015-01-20 05:18:18 +08:00
end
2015-01-20 12:56:04 +08:00
if exist('h_cov', 'var')
2015-01-21 13:14:37 +08:00
delete(h_pose_cov);
2015-01-20 12:56:04 +08:00
end
2015-01-20 05:18:18 +08:00
2015-01-20 12:56:04 +08:00
gRp = poses{i}.rotation().matrix(); % rotation from pose to global
C = poses{i}.translation().vector();
axisLength = 2;
xAxis = C+gRp(:,1)*axisLength;
L = [C xAxis]';
line(L(:,1),L(:,2),L(:,3),'Color','r');
yAxis = C+gRp(:,2)*axisLength;
L = [C yAxis]';
line(L(:,1),L(:,2),L(:,3),'Color','g');
zAxis = C+gRp(:,3)*axisLength;
L = [C zAxis]';
line(L(:,1),L(:,2),L(:,3),'Color','b');
pPp = posesCov{i}(4:6,4:6); % covariance matrix in pose coordinate frame
gPp = gRp*pPp*gRp'; % convert the covariance matrix to global coordinate frame
2015-01-21 13:14:37 +08:00
h_pose_cov = gtsam.covarianceEllipse3D(C,gPp);
if exist('h_point', 'var')
for j = 1:pointSize
delete(h_point{j});
end
end
if exist('h_point_cov', 'var')
for j = 1:pointSize
delete(h_point_cov{j});
end
end
h_point = cell(pointSize, 1);
h_point_cov = cell(pointSize, 1);
for j = 1:pointSize
if ~isempty(pts3d{j}.cov{i})
h_point{j} = plot3(pts3d{j}.data.x, pts3d{j}.data.y, pts3d{j}.data.z);
h_point_cov{j} = gtsam.covarianceEllipse3D([pts3d{j}.data.x; pts3d{j}.data.y; pts3d{j}.data.z], pts3d{j}.cov{i});
end
end
2015-01-20 12:56:04 +08:00
2015-01-22 05:18:03 +08:00
axis equal
axis([0, options.fieldSize.x, 0, options.fieldSize.y, 0, 20]);
2015-01-20 12:56:04 +08:00
drawnow;
2015-01-21 03:06:39 +08:00
if options.writeVideo
currFrame = getframe(gcf);
writeVideo(videoObj, currFrame);
end
end
2015-01-21 13:14:37 +08:00
if exist('h_pose_cov', 'var')
delete(h_pose_cov);
2015-01-20 05:18:18 +08:00
end
2015-01-21 03:06:39 +08:00
% wait for two seconds
pause(2);
2015-01-22 05:18:03 +08:00
% change views
for i = 0 : 0.5 : 60
view([i + 30, i]);
end
2015-01-21 03:06:39 +08:00
2015-01-20 05:18:18 +08:00
%% plot point covariance
2015-01-21 03:06:39 +08:00
% if exist('h_cylinder', 'var')
% delete(h_cylinder);
% end
2015-01-21 13:14:37 +08:00
2015-01-20 05:18:18 +08:00
if ~holdstate
hold off
end
2015-01-20 12:56:04 +08:00
%%close video
if(options.writeVideo)
close(videoObj);
end
2015-01-20 05:18:18 +08:00
end