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

  /external/ceres-solver/include/ceres/
loss_function.h 315 rho_(rho), a_(a), ownership_(ownership) { }
319 rho_.release();
325 internal::scoped_ptr<const LossFunction> rho_; member in class:ceres::ScaledLoss
369 : rho_(rho), ownership_(ownership) {
374 rho_.release();
379 CHECK_NOTNULL(rho_.get());
380 rho_->Evaluate(sq_norm, out);
385 rho_.release();
387 rho_.reset(rho);
392 internal::scoped_ptr<const LossFunction> rho_; member in class:ceres::LossFunctionWrapper
    [all...]
  /external/opencv3/modules/cudaimgproc/src/
hough_segments.cpp 78 rho_(rho), theta_(theta), minLineLength_(minLineLength), maxLineGap_(maxLineGap), maxLines_(maxLines)
84 void setRho(float rho) { rho_ = rho; }
85 float getRho() const { return rho_; }
102 << "rho" << rho_
112 rho_ = (float)fn["rho"];
120 float rho_;
157 const int numrho = cvRound(((src.cols + src.rows) * 2 + 1) / rho_);
164 linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.supports(FEATURE_SET_COMPUTE_20));
168 int linesCount = houghLinesProbabilistic_gpu(src, accum_, result_.ptr<int4>(), maxLines_, rho_, theta_, maxLineGap_, minLineLength_);
hough_lines.cpp 74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines)
81 void setRho(float rho) { rho_ = rho; }
82 float getRho() const { return rho_; }
99 << "rho" << rho_
109 rho_ = (float)fn["rho"];
117 float rho_;
153 const int numrho = cvRound(((src.cols + src.rows) * 2 + 1) / rho_);
160 linesAccum_gpu(srcPoints, pointsCount, accum_, rho_, theta_, devInfo.sharedMemPerBlock(), devInfo.supports(FEATURE_SET_COMPUTE_20));
164 int linesCount = linesGetResult_gpu(accum_, result_.ptr<float2>(0), result_.ptr<int>(1), maxLines_, rho_, theta_, threshold_, doSort_);
  /external/ceres-solver/internal/ceres/
loss_function.cc 145 if (rho_.get() == NULL) {
150 rho_->Evaluate(s, rho);
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.cc 96 rho_(new float[bank_size_]),
112 rho_[i] = config.rho * config.rho;
345 gamma0 = 0.5f * rho_[n] * var_x0[n] * var_n0[n] +
347 beta0 = lambda * var_x0[n] * (2 - rho_[n]) * var_x0[n] * var_n0[n];
349 alpha0 = lambda * var_x0[n] * (1 - rho_[n]) * var_x0[n] * var_x0[n];
intelligibility_enhancer.h 161 rtc::scoped_ptr<float[]> rho_; // Production and interpretation SNR. member in class:webrtc::IntelligibilityEnhancer
intelligibility_enhancer_unittest.cc 172 enh_->rho_[i] = 0.02f;

Completed in 232 milliseconds