Home
last modified time | relevance | path

Searched refs:canny_ (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dhough_circles.cpp141 Ptr<cuda::CannyEdgeDetector> canny_; member in __anon547dd86a0111::HoughCirclesDetectorImpl
151 canny_ = cuda::createCannyEdgeDetector(std::max(cannyThreshold_ / 2, 1), cannyThreshold_); in HoughCirclesDetectorImpl()
181 canny_->setLowThreshold(std::max(cannyThreshold_ / 2, 1)); in detect()
182 canny_->setHighThreshold(cannyThreshold_); in detect()
184 canny_->detect(dx_, dy_, edges_); in detect()
Dgeneralized_hough.cpp151 Ptr<cuda::CannyEdgeDetector> canny_; member in __anon161a480f0111::GeneralizedHoughBase
173 canny_ = cuda::createCannyEdgeDetector(cannyLowThresh_, cannyHighThresh_); in GeneralizedHoughBase()
195 canny_->setLowThreshold(cannyLowThresh_); in calcEdges()
196 canny_->setHighThreshold(cannyHighThresh_); in calcEdges()
197 canny_->detect(dx, dy, edges); in calcEdges()