Lec 13
Lec 13
CODE:
% Add the first view. Place the camera associated with the
first view
% and the origin, oriented along the Z-axis.
viewId = 1;
vSet = addView(vSet, viewId, rigid3d, 'Points', prevPoints);
for i = 2:numel(images)
% Undistort the current image.
I = undistortImage(images{i}, intrinsics);
prevFeatures = currFeatures;
prevPoints = currPoints;
end
% Display camera poses.
camPoses = poses(vSet);
figure;
plotCamera(camPoses, 'Size', 0.2);
hold on
title('Dense Reconstruction');
Input Image Sequence