HomeSort by relevance Sort by last modified time
    Searched refs:apperture_size (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/cudaimgproc/perf/
perf_canny.cpp 60 const int apperture_size = GET_PARAM(1); local
74 cv::Ptr<cv::cuda::CannyEdgeDetector> 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/test/
test_canny.cpp 61 int apperture_size; local
68 apperture_size = GET_PARAM(1);
84 cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size, useL2gradient);
90 cv::Canny(img, edges_gold, low_thresh, high_thresh, apperture_size, useL2gradient);
  /external/opencv3/modules/imgproc/test/ocl/
test_canny.cpp 63 int cn, apperture_size; local
72 apperture_size = GET_PARAM(1);
108 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, apperture_size, useL2gradient));
109 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, apperture_size, useL2gradient));
  /external/opencv3/modules/cudaimgproc/src/
canny.cpp 73 CannyImpl(double low_thresh, double high_thresh, int apperture_size, bool L2gradient) :
74 low_thresh_(low_thresh), high_thresh_(high_thresh), apperture_size_(apperture_size), L2gradient_(L2gradient)
88 void setAppertureSize(int apperture_size) { apperture_size_ = apperture_size; }
99 << "apperture_size" << apperture_size_
108 apperture_size_ = (int)fn["apperture_size"];
231 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size, bool L2gradient)
233 return makePtr<CannyImpl>(low_thresh, high_thresh, apperture_size, L2gradient);
  /external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp 303 virtual void setAppertureSize(int apperture_size) = 0;
314 @param apperture_size Aperture size for the Sobel operator.
320 CV_EXPORTS Ptr<CannyEdgeDetector> createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);

Completed in 390 milliseconds