Put back Alex's change that I foolishly undid.
parent
7d3db1c962
commit
984032e29e
|
@ -10,9 +10,10 @@ cla(h);
|
||||||
hold on;
|
hold on;
|
||||||
|
|
||||||
%% Plot points
|
%% Plot points
|
||||||
for k=1:length(data.J{M})
|
% Can't use data because current frame might not see all points
|
||||||
j = data.J{M}{k};
|
pointKeys = result.allPoints().keys();
|
||||||
jj = symbol('l', j);
|
for j=0:N-1 % NOTE: uses indexing directly from a C++ vector, so zero-indexed
|
||||||
|
jj = pointKeys.at(j);
|
||||||
point_j = result.point(jj);
|
point_j = result.point(jj);
|
||||||
plot3(point_j.x, point_j.y, point_j.z,'marker','o');
|
plot3(point_j.x, point_j.y, point_j.z,'marker','o');
|
||||||
P = isam.marginalCovariance(jj);
|
P = isam.marginalCovariance(jj);
|
||||||
|
|
Loading…
Reference in New Issue