Skip to content

Commit

Permalink
remove useless prints
Browse files Browse the repository at this point in the history
  • Loading branch information
servantftechnicolor committed May 27, 2024
1 parent 5c313fa commit a85d634
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/software/pipeline/main_relativePoseEstimating.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ int aliceVision_main(int argc, char** argv)
int chunkEnd = int(double(rangeStart + rangeSize) * ratioChunk);

// For each covisible pair
//#pragma omp parallel for
#pragma omp parallel for
for (int posPairs = chunkStart; posPairs < chunkEnd; posPairs++)
{
auto iterPairs = covisibility.begin();
Expand Down Expand Up @@ -425,8 +425,6 @@ int aliceVision_main(int argc, char** argv)
continue;
}

std::cout << inliers.size() << std::endl;

std::vector<Vec3> structure;
reconstructed.reference = refImage;
reconstructed.next = nextImage;
Expand All @@ -437,13 +435,9 @@ int aliceVision_main(int argc, char** argv)
continue;
}

std::cout << vecInliers.size() << std::endl;

reconstructed.R = T.block<3, 3>(0, 0);
reconstructed.t = T.block<3, 1>(0, 3);
}

std::cout << vecInliers.size() << std::endl;

// Extract inliers
std::vector<Vec2> refPtsValid, nextPtsValid;
Expand Down

0 comments on commit a85d634

Please sign in to comment.