Skip to content

Commit

Permalink
More sonarqube fixes to shorten functions
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jun 18, 2024
1 parent f9a790e commit 14cbdd6
Show file tree
Hide file tree
Showing 11 changed files with 1,114 additions and 1,108 deletions.
340 changes: 174 additions & 166 deletions modules/core/include/visp3/core/vpImageTools.h

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions modules/core/include/visp3/core/vpMatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,14 @@ class VISP_EXPORT vpMatrix : public vpArray2D<double>
double *x_data, int incx_, double beta, double *y_data, int incy_);
static void blas_dsyev(char jobz, char uplo, unsigned int n_, double *a_data, unsigned int lda_, double *w_data,
double *work_data, int lwork_, int &info_);

unsigned int qrPivotLapack(vpMatrix &Q, vpMatrix &R, vpMatrix &P, bool full, bool squareR,
double tol) const;

#ifdef VISP_HAVE_GSL
unsigned int qrPivotLapackGSL(vpMatrix &Q, vpMatrix &R, vpMatrix &P, bool full, bool squareR,
double tol) const;
#endif
#endif

static void computeCovarianceMatrixVVS(const vpHomogeneousMatrix &cMo, const vpColVector &deltaS, const vpMatrix &Ls,
Expand Down
Loading

0 comments on commit 14cbdd6

Please sign in to comment.