Skip to content

Commit

Permalink
[fuseCut] convert Histogram LOG_INFO into LOG_TRACE
Browse files Browse the repository at this point in the history
Conversion of the histogram LOG_INFO to LOG_TRACE for more clarity in the information panel.
  • Loading branch information
dsmtE committed Jun 17, 2020
1 parent f8109b0 commit 94e7c65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/aliceVision/fuseCut/DelaunayGraphCut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,15 +494,15 @@ void DelaunayGraphCut::displayStatistics()
// Display some statistics

StaticVector<int>* ptsCamsHist = getPtsCamsHist();
ALICEVISION_LOG_INFO("Histogram of number of cams per point:");
ALICEVISION_LOG_TRACE("Histogram of number of cams per point:");
for(int i = 0; i < ptsCamsHist->size(); ++i)
ALICEVISION_LOG_INFO(" " << i << ": " << mvsUtils::num2str((*ptsCamsHist)[i]));
ALICEVISION_LOG_TRACE(" " << i << ": " << mvsUtils::num2str((*ptsCamsHist)[i]));
delete ptsCamsHist;

StaticVector<int>* ptsNrcsHist = getPtsNrcHist();
ALICEVISION_LOG_INFO("Histogram of Nrc per point:");
ALICEVISION_LOG_TRACE("Histogram of Nrc per point:");
for(int i = 0; i < ptsNrcsHist->size(); ++i)
ALICEVISION_LOG_INFO(" " << i << ": " << mvsUtils::num2str((*ptsNrcsHist)[i]));
ALICEVISION_LOG_TRACE(" " << i << ": " << mvsUtils::num2str((*ptsNrcsHist)[i]));
delete ptsNrcsHist;
}

Expand Down

0 comments on commit 94e7c65

Please sign in to comment.