Home | History | Annotate | Download | only in perf

Lines Matching refs:alg

251         cv::Ptr<cv::GeneralizedHoughBallard> alg = cv::cuda::createGeneralizedHoughBallard();
258 alg->setTemplate(cv::cuda::GpuMat(templ));
260 TEST_CYCLE() alg->detect(d_edges, d_dx, d_dy, positions);
266 cv::Ptr<cv::GeneralizedHoughBallard> alg = cv::createGeneralizedHoughBallard();
270 alg->setTemplate(templ);
272 TEST_CYCLE() alg->detect(edges, dx, dy, positions);
320 cv::Ptr<cv::GeneralizedHoughGuil> alg = cv::cuda::createGeneralizedHoughGuil();
321 alg->setMaxAngle(90.0);
322 alg->setAngleStep(2.0);
329 alg->setTemplate(cv::cuda::GpuMat(templ));
331 TEST_CYCLE() alg->detect(d_edges, d_dx, d_dy, positions);
335 cv::Ptr<cv::GeneralizedHoughGuil> alg = cv::createGeneralizedHoughGuil();
336 alg->setMaxAngle(90.0);
337 alg->setAngleStep(2.0);
341 alg->setTemplate(templ);
343 TEST_CYCLE() alg->detect(edges, dx, dy, positions);