Functions | |
def | build_factor_graph (method, num_cameras, measurements, cal) |
def | compute_distances (method, result, ground_truth, num_cameras, cal) |
def | compute_ground_truth (method, poses, cal) |
def | formatter (key) |
def | get_initial_estimate (method, num_cameras, ground_truth, cal) |
def | main () |
def | optimize (graph, initialEstimate, method) |
def | plot_results (results) |
def | simulate_data (points, poses, cal, rng, noise_std) |
def | simulate_geometry (num_cameras, rng, num_random_points=12) |
Variables | |
K = gtsam.symbol_shorthand.K | |
list | methods = ["SimpleF", "Fundamental", "Essential+Ks", "Calibrated"] |
Compare several methods for optimizing the view-graph. We measure the distance from the ground truth in terms of the norm of local coordinates (geodesic distance) on the F-manifold. We also plot the final error of the optimization. Author: Frank Dellaert (with heavy assist from ChatGPT) Date: October 2024
def gtsam.examples.ViewGraphComparison.build_factor_graph | ( | method, | |
num_cameras, | |||
measurements, | |||
cal | |||
) |
build the factor graph
Definition at line 99 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.compute_distances | ( | method, | |
result, | |||
ground_truth, | |||
num_cameras, | |||
cal | |||
) |
Compute geodesic distances from ground truth
Definition at line 196 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.compute_ground_truth | ( | method, | |
poses, | |||
cal | |||
) |
Definition at line 80 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.formatter | ( | key | ) |
Definition at line 39 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.get_initial_estimate | ( | method, | |
num_cameras, | |||
ground_truth, | |||
cal | |||
) |
get initial estimate for method
Definition at line 149 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.main | ( | ) |
Definition at line 285 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.optimize | ( | graph, | |
initialEstimate, | |||
method | |||
) |
optimize the graph
Definition at line 183 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.plot_results | ( | results | ) |
plot results
Definition at line 246 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.simulate_data | ( | points, | |
poses, | |||
cal, | |||
rng, | |||
noise_std | |||
) |
Simulate measurements from each camera pose
Definition at line 66 of file ViewGraphComparison.py.
def gtsam.examples.ViewGraphComparison.simulate_geometry | ( | num_cameras, | |
rng, | |||
num_random_points = 12 |
|||
) |
simulate geometry (points and poses)
Definition at line 48 of file ViewGraphComparison.py.
gtsam.examples.ViewGraphComparison.K = gtsam.symbol_shorthand.K |
Definition at line 32 of file ViewGraphComparison.py.
list gtsam.examples.ViewGraphComparison.methods = ["SimpleF", "Fundamental", "Essential+Ks", "Calibrated"] |
Definition at line 35 of file ViewGraphComparison.py.