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

  /external/opencv3/modules/cudaimgproc/src/
generalized_hough.cpp 120 int cannyLowThresh_;
165 cannyLowThresh_ = 50;
173 canny_ = cuda::createCannyEdgeDetector(cannyLowThresh_, cannyHighThresh_);
185 CV_Assert( cannyLowThresh_ > 0 && cannyLowThresh_ < cannyHighThresh_ );
195 canny_->setLowThreshold(cannyLowThresh_);
452 void setCannyLowThresh(int cannyLowThresh) { cannyLowThresh_ = cannyLowThresh; }
453 int getCannyLowThresh() const { return cannyLowThresh_; }
576 void setCannyLowThresh(int cannyLowThresh) { cannyLowThresh_ = cannyLowThresh; }
577 int getCannyLowThresh() const { return cannyLowThresh_; }
    [all...]
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 77 int cannyLowThresh_;
104 cannyLowThresh_ = 50;
115 CV_Assert( cannyLowThresh_ > 0 && cannyLowThresh_ < cannyHighThresh_ );
117 Canny(src, edges, cannyLowThresh_, cannyHighThresh_);
340 void setCannyLowThresh(int cannyLowThresh) { cannyLowThresh_ = cannyLowThresh; }
341 int getCannyLowThresh() const { return cannyLowThresh_; }
512 void setCannyLowThresh(int cannyLowThresh) { cannyLowThresh_ = cannyLowThresh; }
513 int getCannyLowThresh() const { return cannyLowThresh_; }

Completed in 38 milliseconds