Skip to content
Snippets Groups Projects
Commit 38dda397 authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

try to make aruco faster

parent 4e684664
No related branches found
No related tags found
1 merge request!340aruco tags; headset position adjustment
Pipeline #29354 failed
This commit is part of merge request !340. Comments created here will be created in the context of that merge request.
......@@ -44,8 +44,8 @@ ArUco::ArUco(ftl::operators::Graph *g, ftl::Configurable *cfg) : ftl::operators:
cfg->value("dictionary", int(cv::aruco::DICT_4X4_50)));
params_ = cv::aruco::DetectorParameters::create();
params_->cornerRefinementMethod = cv::aruco::CORNER_REFINE_CONTOUR;
params_->cornerRefinementMinAccuracy = 0.01;
params_->cornerRefinementMaxIterations = 20;
params_->cornerRefinementMinAccuracy = 0.05;
params_->cornerRefinementMaxIterations = 10;
// default values 13, 23, 10, for speed just one thresholding window size
params_->adaptiveThreshWinSizeMin = 15;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment