Skip to content

Commit

Permalink
Remove vpDebug.h usage in vpRobust
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jun 18, 2024
1 parent 9c0db51 commit 0b2e783
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions modules/core/src/math/robust/vpRobust.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
#include <visp3/core/vpColVector.h>
#include <visp3/core/vpMath.h>
#include <visp3/core/vpRobust.h>
#include <visp3/core/vpDebug.h>

BEGIN_VISP_NAMESPACE
/*!
Expand Down Expand Up @@ -321,8 +320,6 @@ vpRobust::vpRobust(unsigned int n_data)
#endif
m_size(n_data), m_mad(0)
{
vpCDEBUG(2) << "vpRobust constructor reached" << std::endl;

m_normres.resize(n_data);
m_sorted_normres.resize(n_data);
m_sorted_residues.resize(n_data);
Expand Down Expand Up @@ -353,8 +350,6 @@ void vpRobust::MEstimator(const vpRobustEstimatorType method, const vpColVector
switch (method) {
case TUKEY: {
psiTukey(m_mad, all_normres, weights);

vpCDEBUG(2) << "Tukey's function computed" << std::endl;
break;
}
case CAUCHY: {
Expand Down

0 comments on commit 0b2e783

Please sign in to comment.