Skip to content

Commit

Permalink
Fix typo in minimal solver docstring
Browse files Browse the repository at this point in the history
Co-authored-by: ymd-stella <[email protected]>
  • Loading branch information
jjd9 and ymd-stella authored Feb 11, 2024
1 parent 5d16cc7 commit ad697e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stella_vslam/solve/essential_solver.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class essential_solver {
static Mat33_t create_E_21(const Mat33_t& rot_1w, const Vec3_t& trans_1w, const Mat33_t& rot_2w, const Vec3_t& trans_2w);

private:
//! Compute an essential matrix with 5-point algorithm from Stewenius et al. (accepts 5 or more corresponding sets of bearing vectors). but works best
//! Compute essential matrices with 5-point algorithm from Stewenius et al. (accepts 5 or more corresponding sets of bearing vectors). but works best
// when used with RANSAC since it can produce up to 10 feasible essential matrices that need to be validated
std::vector<Mat33_t> compute_E_21_minimal(const eigen_alloc_vector<Vec3_t>& x1, const eigen_alloc_vector<Vec3_t>& x2);

Expand Down

0 comments on commit ad697e8

Please sign in to comment.