You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your extraordinary work, I was attempting to use SESync for a realtime SLAM, however I am facing an issue, while running SESync periodically, the results.xhat matrix inverts values abruptly.
The SESync Result is as follows:
The x and y values get interchanged for a certain set of measurements and abruptly return to normal. The code I am using to access these values is
results = SESync::SESync(measurements, opts);
int latest_result = results.xhat.cols()/3;
double x ,y;
x = results.xhat.col(latest_result-1)[0];
y = results.xhat.col(latest_result-1)[1];
If one more value is added and SESync is rerun the output returns to normal. It appears to invert almost randomly. I have printed two consecutive result matrices into a google sheet here
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Thank you for your extraordinary work, I was attempting to use SESync for a realtime SLAM, however I am facing an issue, while running SESync periodically, the results.xhat matrix inverts values abruptly.
The SESync Result is as follows:
The x and y values get interchanged for a certain set of measurements and abruptly return to normal. The code I am using to access these values is
If one more value is added and SESync is rerun the output returns to normal. It appears to invert almost randomly. I have printed two consecutive result matrices into a google sheet here
Thanks in advance!
The text was updated successfully, but these errors were encountered: