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

  /external/opencv3/modules/cudaimgproc/src/
hough_circles.cpp 79 void setDp(float dp) { dp_ = dp; }
80 float getDp() const { return dp_; }
103 << "dp" << dp_
115 dp_ = (float)fn["dp"];
125 float dp_;
148 dp_(dp), minDist_(minDist), cannyThreshold_(cannyThreshold), votesThreshold_(votesThreshold),
170 CV_Assert( dp_ > 0 );
176 const float idp = 1.0f / dp_;
299 dp_, minRadius_, maxRadius_, votesThreshold_, deviceSupports(FEATURE_SET_COMPUTE_20));
generalized_hough.cpp 123 double dp_;
168 dp_ = 1.0;
461 void setDp(double dp) { dp_ = dp; }
462 double getDp() const { return dp_; }
526 CV_Assert( dp_ > 0.0);
528 const double idp = 1.0 / dp_;
540 (float)dp_, levels_);
552 posCount_ = Ballard_Pos_findPosInHist_gpu(hist_, outBuf_.ptr<float4>(0), outBuf_.ptr<int3>(1), maxBufferSize_, (float)dp_, votesThreshold_);
585 void setDp(double dp) { dp_ = dp; }
586 double getDp() const { return dp_; }
    [all...]
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 80 double dp_; member in class:__anon22570::GeneralizedHoughBase
107 dp_ = 1.0;
349 void setDp(double dp) { dp_ = dp; }
350 double getDp() const { return dp_; }
422 CV_Assert( dp_ > 0.0 );
425 const double idp = 1.0 / dp_;
484 posOutBuf_.push_back(Vec4f(static_cast<float>(x * dp_), static_cast<float>(y * dp_), 1.0f, 0.0f));
521 void setDp(double dp) { dp_ = dp; }
522 double getDp() const { return dp_; }
    [all...]

Completed in 1972 milliseconds