HomeSort by relevance Sort by last modified time
    Searched full:weight_ (Results 1 - 13 of 13) sorted by null

  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.cpp 50 gradient.AdditiveWeightUpdate(-lambda_, weight_, 0.0);
58 weight_.AdditiveWeightUpdate(final_learning_rate, gradient, 0.0);
68 weight_backup.CopyFrom(weight_);
109 weight_.ReprojectL1(norm_constraint_);
112 weight_.ReprojectL2(norm_constraint_);
115 weight_.ReprojectL0(norm_constraint_);
127 if (!weight_.IsValid())
128 weight_.CopyFrom(weight_backup);
stochastic_linear_ranker.h 170 weight_.LoadWeightVector(model);
174 model->LoadWeightVector(weight_);
178 const double dot = weight_.DotProduct(sample);
187 w_square = weight_.L2Norm();
205 SparseWeightVector<Key, Hash> weight_; member in class:learning_stochastic_linear::StochasticLinearRanker
  /external/opencv3/modules/cudabgsegm/src/
mog.cpp 112 GpuMat weight_;
155 mog_gpu(frame, ch, fgmask, weight_, sortKey_, mean_, var_, nmixtures_,
172 getBackgroundImage_gpu(backgroundImage.channels(), weight_, mean_, backgroundImage, nmixtures_, backgroundRatio_, StreamAccessor::getStream(stream));
190 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
195 weight_.setTo(cv::Scalar::all(0));
mog2.cpp 148 GpuMat weight_;
200 mog2_gpu(frame, frame.channels(), fgmask, bgmodelUsedModes_, weight_, variance_, mean_,
216 getBackgroundImage2_gpu(backgroundImage.channels(), bgmodelUsedModes_, weight_, mean_, backgroundImage, StreamAccessor::getStream(stream));
236 weight_.create(frameSize.height * nmixtures_, frameSize_.width, CV_32FC1);
  /external/opencv3/modules/videostab/include/opencv2/videostab/
motion_stabilizing.hpp 112 std::vector<float> weight_; member in class:cv::videostab::GaussianMotionFilter
  /external/opencv3/modules/videostab/src/
motion_stabilizing.cpp 97 weight_.resize(2*radius_ + 1);
99 sum += weight_[radius_ + i] = std::exp(-i*i/(stdev_*stdev_));
101 weight_[radius_ + i] /= sum;
114 res += weight_[radius_ + i - idx] * getMotion(idx, i, motions);
115 sum += weight_[radius_ + i - idx];
  /external/ImageMagick/Magick++/lib/
Options.cpp 348 void Magick::Options::fontWeight(const size_t weight_)
350 _drawInfo->weight=weight_;
351 setOption("weight",(double) weight_);
Drawable.cpp 818 const unsigned int weight_,
823 _weight(weight_),
    [all...]
Image.cpp 898 void Magick::Image::fontWeight(const size_t weight_)
901 options()->fontWeight(weight_);
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Options.h 133 void fontWeight(const size_t weight_);
Drawable.h 1074 const unsigned int weight_,
    [all...]
Image.h 270 void fontWeight(const size_t weight_);
    [all...]
  /external/ImageMagick/www/Magick++/
Drawable.html 287 <font size="2">unsigned int weight_,</font><br />
    [all...]

Completed in 461 milliseconds