Skip to content

Commit

Permalink
Relax thresholds for testGenericTracker-edge-scanline to comply with …
Browse files Browse the repository at this point in the history
…ciosx ci
  • Loading branch information
fspindle committed Feb 14, 2024
1 parent 72b4dd6 commit 94bb8d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ bool run(const std::string &input_directory, bool opt_click_allowed, bool opt_di
#endif
#else
map_thresh[vpMbGenericTracker::EDGE_TRACKER] =
useScanline ? std::pair<double, double>(0.008, 2.3) : std::pair<double, double>(0.009, 4.0);
useScanline ? std::pair<double, double>(0.01, 2.5) : std::pair<double, double>(0.009, 4.0);
#if defined(VISP_HAVE_MODULE_KLT) && defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
map_thresh[vpMbGenericTracker::KLT_TRACKER] =
useScanline ? std::pair<double, double>(0.006, 1.7) : std::pair<double, double>(0.005, 1.4);
Expand Down

0 comments on commit 94bb8d7

Please sign in to comment.