class
ResultTrajectoryA single run for a given dataset.
Contents
This class has all the error function which can be calculated for the loaded trajectory. Given a groundtruth and trajectory we first align the two so that they are in the same frame. From there the following errors could be computed:
- Absolute trajectory error
- Relative pose Error
- Normalized estimation error squared
- Error and bound at each timestep
Please see the System Evaluation page for details and Zhang and Scaramuzza A Tutorial on Quantitative Trajectory Evaluation for Visual(-Inertial) Odometry paper for implementation specific details.
Constructors, destructors, conversion operators
- ResultTrajectory(std::string path_est, std::string path_gt, std::string alignment_method)
- Default constructor that will load, intersect, and align our trajectories.
Public functions
- void calculate_ate(Statistics& error_ori, Statistics& error_pos)
- Computes the Absolute Trajectory Error (ATE) for this trajectory.
- void calculate_ate_2d(Statistics& error_ori, Statistics& error_pos)
- Computes the Absolute Trajectory Error (ATE) for this trajectory in the 2d x-y plane.
- void calculate_rpe(const std::vector<double>& segment_lengths, std::map<double, std::pair<Statistics, Statistics>>& error_rpe)
- Computes the Relative Pose Error (RPE) for this trajectory.
- void calculate_nees(Statistics& nees_ori, Statistics& nees_pos)
- Computes the Normalized Estimation Error Squared (NEES) for this trajectory.
- void calculate_error(Statistics& posx, Statistics& posy, Statistics& posz, Statistics& orix, Statistics& oriy, Statistics& oriz, Statistics& roll, Statistics& pitch, Statistics& yaw)
- Computes the error at each timestamp for this trajectory.
Protected functions
- auto compute_comparison_indices_length(std::vector<double>& distances, double distance, double max_dist_diff) -> std::vector<int>
- Gets the indices at the end of subtractories of a given length when starting at each index. For each starting pose, find the end pose index which is the desired distance away.
Function documentation
ov_eval:: ResultTrajectory:: ResultTrajectory(std::string path_est,
std::string path_gt,
std::string alignment_method)
Default constructor that will load, intersect, and align our trajectories.
Parameters | |
---|---|
path_est | Path to the estimate text file |
path_gt | Path to the groundtruth text file |
alignment_method | The alignment method to use [sim3, se3, posyaw, none] |
void ov_eval:: ResultTrajectory:: calculate_ate(Statistics& error_ori,
Statistics& error_pos)
Computes the Absolute Trajectory Error (ATE) for this trajectory.
Parameters | |
---|---|
error_ori | Error values for the orientation |
error_pos | Error values for the position |
This will first do our alignment of the two trajectories. Then at each point the error will be calculated and normed as follows:
void ov_eval:: ResultTrajectory:: calculate_ate_2d(Statistics& error_ori,
Statistics& error_pos)
Computes the Absolute Trajectory Error (ATE) for this trajectory in the 2d x-y plane.
Parameters | |
---|---|
error_ori | Error values for the orientation (yaw error) |
error_pos | Error values for the position (xy error) |
This will first do our alignment of the two trajectories. We just grab the yaw component of the orientation and the xy plane error. Then at each point the error will be calculated and normed as follows:
void ov_eval:: ResultTrajectory:: calculate_rpe(const std::vector<double>& segment_lengths,
std::map<double, std::pair<Statistics, Statistics>>& error_rpe)
Computes the Relative Pose Error (RPE) for this trajectory.
Parameters | |
---|---|
segment_lengths | What segment lengths we want to calculate for |
error_rpe | Map of segment lengths => errors for that length (orientation and position) |
For the given set of segment lengths, this will split the trajectory into segments. From there it will compute the relative pose error for all segments. These are then returned as a map for each segment length.
void ov_eval:: ResultTrajectory:: calculate_nees(Statistics& nees_ori,
Statistics& nees_pos)
Computes the Normalized Estimation Error Squared (NEES) for this trajectory.
Parameters | |
---|---|
nees_ori | NEES values for the orientation |
nees_pos | NEES values for the position |
If we have a covariance in addition to our pose estimate we can compute the NEES values. At each timestep we compute this for both orientation and position.
void ov_eval:: ResultTrajectory:: calculate_error(Statistics& posx,
Statistics& posy,
Statistics& posz,
Statistics& orix,
Statistics& oriy,
Statistics& oriz,
Statistics& roll,
Statistics& pitch,
Statistics& yaw)
Computes the error at each timestamp for this trajectory.
Parameters | |
---|---|
posx | Position x-axis error and bound if we have it in our file |
posy | Position y-axis error and bound if we have it in our file |
posz | Position z-axis error and bound if we have it in our file |
orix | Orientation x-axis error and bound if we have it in our file |
oriy | Orientation y-axis error and bound if we have it in our file |
oriz | Orientation z-axis error and bound if we have it in our file |
roll | Orientation roll error and bound if we have it in our file |
pitch | Orientation pitch error and bound if we have it in our file |
yaw | Orientation yaw error and bound if we have it in our file |
As compared to ATE error (see calculate_
std::vector<int> ov_eval:: ResultTrajectory:: compute_comparison_indices_length(std::vector<double>& distances,
double distance,
double max_dist_diff) protected
Gets the indices at the end of subtractories of a given length when starting at each index. For each starting pose, find the end pose index which is the desired distance away.
Parameters | |
---|---|
distances | Total distance travelled from start at each index |
distance | Distance of subtrajectory |
max_dist_diff | Maximum error between current trajectory length and the desired |
Returns | End indices for each subtrajectory |