Home
last modified time | relevance | path

Searched refs:apperture_size (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/cudaimgproc/test/
Dtest_canny.cpp61 int apperture_size; in PARAM_TEST_CASE() local
68 apperture_size = GET_PARAM(1); in PARAM_TEST_CASE()
84 …> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient… in CUDA_TEST_P()
90 cv::Canny(img, edges_gold, low_thresh, high_thresh, apperture_size, useL2gradient); in CUDA_TEST_P()
/external/opencv3/modules/imgproc/test/ocl/
Dtest_canny.cpp63 int cn, apperture_size; in IMPLEMENT_PARAM_CLASS() local
72 apperture_size = GET_PARAM(1); in IMPLEMENT_PARAM_CLASS()
108 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, apperture_size, useL2gradient)); in OCL_TEST_P()
109 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, apperture_size, useL2gradient)); in OCL_TEST_P()
/external/opencv3/modules/cudaimgproc/perf/
Dperf_canny.cpp60 const int apperture_size = GET_PARAM(1); variable
74 …> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient…
84 TEST_CYCLE() cv::Canny(image, dst, low_thresh, high_thresh, apperture_size, useL2gradient);
/external/opencv3/modules/cudaimgproc/src/
Dcanny.cpp73 CannyImpl(double low_thresh, double high_thresh, int apperture_size, bool L2gradient) : in CannyImpl() argument
74 …low_thresh_(low_thresh), high_thresh_(high_thresh), apperture_size_(apperture_size), L2gradient_(L… in CannyImpl()
88 void setAppertureSize(int apperture_size) { apperture_size_ = apperture_size; } in setAppertureSize() argument
231 …::createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size, bool L2gradie… in createCannyEdgeDetector() argument
233 return makePtr<CannyImpl>(low_thresh, high_thresh, apperture_size, L2gradient); in createCannyEdgeDetector()
/external/opencv3/modules/cudaimgproc/include/opencv2/
Dcudaimgproc.hpp303 virtual void setAppertureSize(int apperture_size) = 0;
320 …> createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size = 3, bool L2gr…