Skip to content

Commit

Permalink
Fix insufficient pose bug in non-overlap camera calib (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
rameau-fr committed Apr 11, 2024
1 parent 62d0587 commit ff00929
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions McCalib/src/McCalib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,9 @@ void Calibration::initNonOverlapPair(const int cam_group_id1,
}
}

// Check if enough common poses are available:
if (pose_abs_1.size()<=3 || pose_abs_2.size()<=3) {return;}

// HANDEYE CALIBRATION
cv::Mat pose_g1_g2;
if (he_approach_ == 0) {
Expand Down

0 comments on commit ff00929

Please sign in to comment.