From 750b862e97b901438b7940570a11ec40b1e847ce Mon Sep 17 00:00:00 2001 From: niebayes Date: Sun, 19 Jul 2020 15:46:06 +0800 Subject: [PATCH] Remove duplicated semicolons --- src/sfm_inc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sfm_inc.cpp b/src/sfm_inc.cpp index ba6f6f0..aec6b18 100644 --- a/src/sfm_inc.cpp +++ b/src/sfm_inc.cpp @@ -135,7 +135,7 @@ int main() printf("3DV Tutorial: There is no good match. Try again after reducing 'max_cos_parallax'.\n"); return -1; } - const uint best_cam0 = match_pair[best_pair].first, best_cam1 = match_pair[best_pair].second;; + const uint best_cam0 = match_pair[best_pair].first, best_cam1 = match_pair[best_pair].second; // 2) Estimate relative pose from the best two views (epipolar geometry) std::vector src, dst; @@ -177,7 +177,7 @@ int main() if (best_score[best_pair] > 100) break; best_score[best_pair] = 0; } // End of the 1st 'while (true)' - const uint best_cam0 = match_pair[best_pair].first, best_cam1 = match_pair[best_pair].second;; + const uint best_cam0 = match_pair[best_pair].first, best_cam1 = match_pair[best_pair].second; // Prepare the initial 3D points std::vector Xs;