Skip to content

Commit

Permalink
Relax testGenericTracker-edge-scanline when scanline is used
Browse files Browse the repository at this point in the history
- test failed on Ubuntu 12.04 ci
  • Loading branch information
fspindle committed Mar 26, 2024
1 parent 802f4e7 commit cadbd65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ bool run(const std::string &input_directory, bool opt_click_allowed, bool opt_di
// Take the highest thresholds between all CI machines
#ifdef VISP_HAVE_COIN3D
map_thresh[vpMbGenericTracker::EDGE_TRACKER] =
useScanline ? std::pair<double, double>(0.005, 5.) : std::pair<double, double>(0.007, 3.9);
useScanline ? std::pair<double, double>(0.005, 6.) : std::pair<double, double>(0.007, 3.9);
#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.007, 1.9) : std::pair<double, double>(0.007, 1.8);
Expand Down

0 comments on commit cadbd65

Please sign in to comment.