Home
last modified time | relevance | path

Searched refs:rho_ (Results 1 – 7 of 7) sorted by relevance

/external/ceres-solver/include/ceres/
Dloss_function.h315 rho_(rho), a_(a), ownership_(ownership) { } in ScaledLoss()
319 rho_.release(); in ~ScaledLoss()
325 internal::scoped_ptr<const LossFunction> rho_;
369 : rho_(rho), ownership_(ownership) { in LossFunctionWrapper()
374 rho_.release(); in ~LossFunctionWrapper()
379 CHECK_NOTNULL(rho_.get()); in Evaluate()
380 rho_->Evaluate(sq_norm, out); in Evaluate()
385 rho_.release(); in Reset()
387 rho_.reset(rho); in Reset()
392 internal::scoped_ptr<const LossFunction> rho_;
/external/opencv3/modules/cudaimgproc/src/
Dhough_segments.cpp78rho_(rho), theta_(theta), minLineLength_(minLineLength), maxLineGap_(maxLineGap), maxLines_(maxLin… in HoughSegmentDetectorImpl()
84 void setRho(float rho) { rho_ = rho; } in setRho()
85 float getRho() const { return rho_; } in getRho()
102 << "rho" << rho_ in write()
112 rho_ = (float)fn["rho"]; in read()
120 float rho_; member in __anon847be16b0111::HoughSegmentDetectorImpl
157 const int numrho = cvRound(((src.cols + src.rows) * 2 + 1) / rho_); in detect()
164 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect()
168 … houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, theta_, maxLineGap… in detect()
Dhough_lines.cpp74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines) in HoughLinesDetectorImpl()
81 void setRho(float rho) { rho_ = rho; } in setRho()
82 float getRho() const { return rho_; } in getRho()
99 << "rho" << rho_ in write()
109 rho_ = (float)fn["rho"]; in read()
117 float rho_; member in __anon740b7d800111::HoughLinesDetectorImpl
153 const int numrho = cvRound(((src.cols + src.rows) * 2 + 1) / rho_); in detect()
160 …linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.… in detect()
164 …esult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_… in detect()
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
Dintelligibility_enhancer.cc96 rho_(new float[bank_size_]), in IntelligibilityEnhancer()
112 rho_[i] = config.rho * config.rho; in IntelligibilityEnhancer()
345 gamma0 = 0.5f * rho_[n] * var_x0[n] * var_n0[n] + in SolveForGainsGivenLambda()
347 beta0 = lambda * var_x0[n] * (2 - rho_[n]) * var_x0[n] * var_n0[n]; in SolveForGainsGivenLambda()
349 alpha0 = lambda * var_x0[n] * (1 - rho_[n]) * var_x0[n] * var_x0[n]; in SolveForGainsGivenLambda()
Dintelligibility_enhancer.h161 rtc::scoped_ptr<float[]> rho_; // Production and interpretation SNR. variable
Dintelligibility_enhancer_unittest.cc172 enh_->rho_[i] = 0.02f; in TEST_F()
/external/ceres-solver/internal/ceres/
Dloss_function.cc145 if (rho_.get() == NULL) { in Evaluate()
150 rho_->Evaluate(s, rho); in Evaluate()