Skip to content

Commit

Permalink
Merge pull request #1358 from fspindle/fix_ubuntu-12.04-ci
Browse files Browse the repository at this point in the history
Relax testGenericTracker-edge-scanline when scanline is used
  • Loading branch information
fspindle authored Mar 26, 2024
2 parents 802f4e7 + cadbd65 commit b5cb6bb
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 b5cb6bb

Please sign in to comment.