Skip to content

Commit

Permalink
Make vpLevenbergMarquartd private
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Dec 22, 2023
1 parent ffbe694 commit ce2b875
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/vision/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ endif()

vp_set_source_file_compile_flag(src/pose-estimation/vpPoseFeatures.cpp -Wno-strict-overflow)
vp_set_source_file_compile_flag(src/pose-estimation/vpPoseRansac.cpp -Wno-strict-overflow)
vp_set_source_file_compile_flag(src/pose-estimation/vpLevenbergMarquartd.cpp -Wno-strict-overflow)
vp_set_source_file_compile_flag(src/pose-estimation/private/vpLevenbergMarquartd.cpp -Wno-strict-overflow)
vp_set_source_file_compile_flag(src/keypoint/vpKeyPoint.cpp -Wno-strict-overflow)

if(BUILD_MODULE_visp_mbt AND BUILD_MODULE_visp_gui AND BUILD_MODULE_visp_io)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <limits> // numeric_limits

#include <visp3/core/vpMath.h>
#include <visp3/vision/vpLevenbergMarquartd.h>
#include "vpLevenbergMarquartd.h"

#define SIGN(x) ((x) < 0 ? -1 : 1)
#define SWAP(a, b, c) \
Expand Down
2 changes: 1 addition & 1 deletion modules/vision/src/pose-estimation/vpPoseLowe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

// besoin de la librairie mathematique, en particulier des
// fonctions de minimization de Levenberg Marquartd
#include <visp3/vision/vpLevenbergMarquartd.h>
#include "private/vpLevenbergMarquartd.h"
#include <visp3/vision/vpPose.h>

#define NBR_PAR 6
Expand Down

0 comments on commit ce2b875

Please sign in to comment.