Skip to content

Commit

Permalink
Implement ratio test in match_for_triangulation (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymd-stella authored Feb 24, 2024
1 parent 7211bbc commit 07b4e82
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/stella_vslam/mapping_module.cc
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,7 @@ void mapping_module::create_new_landmarks(std::atomic<bool>& abort_create_new_la
// in order to triangulate landmarks between `cur_keyfrm_` and each of the covisibilities
const auto cur_covisibilities = cur_keyfrm_->graph_node_->get_top_n_covisibilities(num_covisibilities_for_landmark_generation_);

// lowe's_ratio will not be used
match::robust robust_matcher(0.0, false);
match::robust robust_matcher(0.95, false);

// camera center of the current keyframe
const Vec3_t cur_cam_center = cur_keyfrm_->get_trans_wc();
Expand Down
16 changes: 14 additions & 2 deletions src/stella_vslam/match/robust.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ unsigned int robust::match_for_triangulation(const std::shared_ptr<data::keyfram
// Find a keypoint in keyframe 2 that has the minimum hamming distance
unsigned int best_hamm_dist = HAMMING_DIST_THR_LOW;
int best_idx_2 = -1;
unsigned int second_best_hamm_dist = MAX_HAMMING_DIST;

for (const auto idx_2 : keyfrm_2_indices) {
// Ignore if the keypoint is associated any 3D points
Expand Down Expand Up @@ -113,15 +114,26 @@ unsigned int robust::match_for_triangulation(const std::shared_ptr<data::keyfram
const bool is_inlier = check_epipolar_constraint(bearing_1, bearing_2, E_12,
keyfrm_1->orb_params_->scale_factors_.at(keypt_1.octave));
if (is_inlier) {
best_idx_2 = idx_2;
best_hamm_dist = hamm_dist;
if (hamm_dist < best_hamm_dist) {
second_best_hamm_dist = best_hamm_dist;
best_hamm_dist = hamm_dist;
best_idx_2 = idx_2;
}
else if (hamm_dist < second_best_hamm_dist) {
second_best_hamm_dist = hamm_dist;
}
}
}

if (best_idx_2 < 0) {
continue;
}

// Ratio test
if (lowe_ratio_ * second_best_hamm_dist < static_cast<float>(best_hamm_dist)) {
continue;
}

is_already_matched_in_keyfrm_2.at(best_idx_2) = true;
matched_indices_2_in_keyfrm_1.at(idx_1) = best_idx_2;
++num_matches;
Expand Down

0 comments on commit 07b4e82

Please sign in to comment.