Skip to content

Commit

Permalink
Applying linters (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
BAILOOL committed Apr 16, 2024
1 parent ff00929 commit bfa312b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion McCalib/src/McCalib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,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;}
if (pose_abs_1.size() <= 3 || pose_abs_2.size() <= 3) {
return;
}

// HANDEYE CALIBRATION
cv::Mat pose_g1_g2;
Expand Down

0 comments on commit bfa312b

Please sign in to comment.