/external/opencv3/modules/cudaimgproc/src/ |
D | hough_segments.cpp | 78 …rho_(rho), theta_(theta), minLineLength_(minLineLength), maxLineGap_(maxLineGap), maxLines_(maxLin… in HoughSegmentDetectorImpl() 87 void setTheta(float theta) { theta_ = theta; } in setTheta() 88 float getTheta() const { return theta_; } in getTheta() 103 << "theta" << theta_ in write() 113 theta_ = (float)fn["theta"]; in read() 121 float theta_; member in __anon847be16b0111::HoughSegmentDetectorImpl 156 const int numangle = cvRound(CV_PI / theta_); in detect() 164 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect() 168 …inesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, theta_, maxLineGap_, minL… in detect()
|
D | hough_lines.cpp | 74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines) in HoughLinesDetectorImpl() 84 void setTheta(float theta) { theta_ = theta; } in setTheta() 85 float getTheta() const { return theta_; } in getTheta() 100 << "theta" << theta_ in write() 110 theta_ = (float)fn["theta"]; in read() 118 float theta_; member in __anon740b7d800111::HoughLinesDetectorImpl 152 const int numangle = cvRound(CV_PI / theta_); in detect() 160 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect() 164 …pu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_, doSor… in detect()
|
/external/opencv3/modules/cudaoptflow/src/ |
D | tvl1flow.cpp | 81 … tau_(tau), lambda_(lambda), gamma_(gamma), theta_(theta), nscales_(nscales), warps_(warps), in OpticalFlowDual_TVL1_Impl() 95 virtual double getTheta() const { return theta_; } in getTheta() 96 virtual void setTheta(double theta) { theta_ = theta; } in setTheta() 122 double theta_; member in __anon4c85aea40111::OpticalFlowDual_TVL1_Impl 341 const float l_t = static_cast<float>(lambda_ * theta_); in procOneScale() 342 const float taut = static_cast<float>(tau_ / theta_); in procOneScale() 354 … p11, p12, p21, p22, p31, p32, u1, u2, u3, diff, l_t, static_cast<float>(theta_), gamma_, calcErro… in procOneScale()
|
/external/opencv3/modules/superres/src/ |
D | optical_flow.cpp | 726 CV_IMPL_PROPERTY(double, Theta, theta_) 739 double theta_; member in __anonfeea14390811::DualTVL1_CUDA 755 theta_ = alg_->getTheta(); in DualTVL1_CUDA() 772 alg_->setTheta(theta_); in impl()
|