Home
last modified time | relevance | path

Searched refs:_weight (Results 1 – 10 of 10) sorted by relevance

/external/opencv3/modules/video/src/opencl/
Dbgfg_mog2.cl74 __global float* _weight = (__global float*)(weight);
82 float c_weight = mad(alpha1, _weight[mode_idx], prune);
106 if (c_weight < _weight[prev_idx])
109 _weight[mode_idx] = _weight[prev_idx];
118 _weight[mode_idx] = c_weight; //update weight by the calculated value
129 _weight[mode_idx] = c_weight; //update weight by the calculated value
136 float c_weight = mad(alpha1, _weight[mode_idx], prune);
144 _weight[mode_idx] = c_weight; //update weight by the calculated value
152 _weight[mad24(mode, idx_step, pt_idx)] *= totalWeight;
161 _weight[mode_idx] = 1.f;
[all …]
/external/opencv3/modules/stitching/src/
Dblenders.cpp250 static bool ocl_MultiBandBlender_feed(InputArray _src, InputArray _weight, in ocl_MultiBandBlender_feed() argument
255 ocl::buildOptionsAddMatrixDescription(buildOptions, "weight", _weight); in ocl_MultiBandBlender_feed()
265 ocl::KernelArg::ReadOnly(_weight.getUMat()), in ocl_MultiBandBlender_feed()
457 static bool ocl_normalizeUsingWeightMap(InputArray _weight, InputOutputArray _mat) in ocl_normalizeUsingWeightMap() argument
461 ocl::buildOptionsAddMatrixDescription(buildOptions, "weight", _weight); in ocl_normalizeUsingWeightMap()
469 ocl::KernelArg::ReadOnly(_weight.getUMat()) in ocl_normalizeUsingWeightMap()
477 void normalizeUsingWeightMap(InputArray _weight, InputOutputArray _src) in normalizeUsingWeightMap() argument
483 weight = _weight.getMat(); in normalizeUsingWeightMap()
490 !ocl_normalizeUsingWeightMap(_weight, _src) ) in normalizeUsingWeightMap()
494 weight = _weight.getMat(); in normalizeUsingWeightMap()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java642 private final int _weight; field in DNSRecord.Service
649 this._weight = weight; in Service()
657 out.writeShort(_weight); in write()
675 dout.writeShort(_weight); in toByteArray()
699 return this._weight; in getWeight()
715 …return (_priority == s._priority) && (_weight == s._weight) && (_port == s._port) && _server.equal… in sameValue()
811 …return new ServiceInfoImpl(this.getQualifiedNameMap(), _port, _weight, _priority, persistent, _ser… in getServiceInfo()
DServiceInfoImpl.java52 private int _weight; field in ServiceInfoImpl
195 this._weight = weight; in ServiceInfoImpl()
220 this._weight = info.getWeight(); in ServiceInfoImpl()
586 return _weight; in getWeight()
887 _weight = srv.getWeight(); in updateRecord()
1133 …mpl serviceInfo = new ServiceInfoImpl(this.getQualifiedNameMap(), _port, _weight, _priority, _pers… in clone()
1196 …his.getQualifiedName(), DNSRecordClass.CLASS_IN, unique, ttl, _priority, _weight, _port, localHost… in answers()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dutil.hpp132 …nline GraphEdge::GraphEdge(int _from, int _to, float _weight) : from(_from), to(_to), weight(_weig… in GraphEdge() argument
/external/autotest/client/cros/netprotos/
Dcros_p2p.py123 srvname, _priority, _weight, port = service
163 srvname, _priority, _weight, port = service
/external/libvpx/libvpx/vpx_dsp/
Dpsnrhvs.c88 static double convert_score_db(double _score, double _weight) { in convert_score_db() argument
89 return 10 * (log10(255 * 255) - log10(_weight * _score)); in convert_score_db()
Dfastssim.c444 static double convert_ssim_db(double _ssim, double _weight) { in convert_ssim_db() argument
445 return 10 * (log10(_weight) - log10(_weight - _ssim)); in convert_ssim_db()
/external/ImageMagick/Magick++/lib/
DDrawable.cpp812 _weight(400), in DrawableFont()
823 _weight(weight_), in DrawableFont()
832 _weight(original_._weight), in DrawableFont()
856 DrawSetFontWeight( context_, _weight ); in operator ()()
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h1099 unsigned int _weight; variable