canny              74 modules/cudaimgproc/perf/perf_canny.cpp         cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
canny              76 modules/cudaimgproc/perf/perf_canny.cpp         TEST_CYCLE() canny->detect(d_image, dst);
canny             153 modules/cudaimgproc/src/canny.cpp             canny::calcMagnitude(srcWhole, ofs.x, ofs.y, dx_, dy_, mag_, L2gradient_, StreamAccessor::getStream(stream));
canny             163 modules/cudaimgproc/src/canny.cpp             canny::calcMagnitude(dx_, dy_, mag_, L2gradient_, StreamAccessor::getStream(stream));
canny             190 modules/cudaimgproc/src/canny.cpp         canny::calcMagnitude(dx_, dy_, mag_, L2gradient_, StreamAccessor::getStream(stream));
canny             221 modules/cudaimgproc/src/canny.cpp         canny::calcMap(dx_, dy_, mag_, map_, static_cast<float>(low_thresh_), static_cast<float>(high_thresh_), StreamAccessor::getStream(stream));
canny             223 modules/cudaimgproc/src/canny.cpp         canny::edgesHysteresisLocal(map_, st1_.ptr<short2>(), StreamAccessor::getStream(stream));
canny             225 modules/cudaimgproc/src/canny.cpp         canny::edgesHysteresisGlobal(map_, st1_.ptr<short2>(), st2_.ptr<short2>(), StreamAccessor::getStream(stream));
canny             227 modules/cudaimgproc/src/canny.cpp         canny::getEdges(map_, edges, StreamAccessor::getStream(stream));
canny              84 modules/cudaimgproc/test/test_canny.cpp     cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
canny              87 modules/cudaimgproc/test/test_canny.cpp     canny->detect(loadMat(img, useRoi), edges);
canny              12 modules/imgproc/perf/perf_canny.cpp PERF_TEST_P(Img_Aperture_L2_thresholds, canny,
canny             609 modules/imgproc/src/canny.cpp     if (tegra::useTegra() && tegra::canny(src, dst, low_thresh, high_thresh, aperture_size, L2gradient))
canny            1079 samples/gpu/performance/tests.cpp     Ptr<cuda::CannyEdgeDetector> canny = cuda::createCannyEdgeDetector(50.0, 100.0);
canny            1081 samples/gpu/performance/tests.cpp     canny->detect(d_img, d_edges);
canny            1084 samples/gpu/performance/tests.cpp     canny->detect(d_img, d_edges);