Searched refs:_dist (Results 1 - 13 of 13) sorted by relevance

/external/opencv3/modules/videostab/include/opencv2/videostab/
H A Dfast_marching.hpp92 DXY(float _dist, int _x, int _y) : dist(_dist), x(_x), y(_y) {} argument
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
H A DbtTriangleShapeEx.cpp40 btScalar _dist = - bt_distance_point_plane(plane,points[_k]) + margin; local
42 if (_dist>=0.0f)
44 if (_dist>m_penetration_depth)
46 m_penetration_depth = _dist;
50 else if ((_dist+SIMD_EPSILON)>=m_penetration_depth)
H A Dgim_tri_collision.h90 GREAL _dist = -distance_func(plane,points[_k]) + margin; local
92 if(_dist>=0.0f)
94 if(_dist>m_penetration_depth)
96 m_penetration_depth = _dist;
100 else if((_dist+G_EPSILON)>=m_penetration_depth)
/external/opencv/ml/src/
H A Dmlknearest.cpp215 CvMat* _dist, Cv32suf* sort_buf ) const
290 if( _dist )
292 dst = (float*)(_dist->data.ptr + (start + i)*_dist->step);
306 const float** _neighbors, CvMat* _neighbor_responses, CvMat* _dist ) const
349 if( _dist )
351 if( !CV_IS_MAT(_dist) || CV_MAT_TYPE(_dist->type) != CV_32FC1 ||
352 _dist->rows != _samples->rows || _dist
212 write_results( int k, int k1, int start, int end, const float* neighbor_responses, const float* dist, CvMat* _results, CvMat* _neighbor_responses, CvMat* _dist, Cv32suf* sort_buf ) const argument
[all...]
/external/opencv/cv/src/
H A D_cvkdtree.hpp304 bbf_nn(const __valuetype & _p, accum_type _dist) argument
305 : p(&_p), dist(_dist) {
316 bbf_node(int _node, accum_type _dist) argument
317 : node(_node), dist(_dist) {
/external/opencv3/modules/core/src/
H A Dkmeans.cpp64 const float *_dist,
70 dist(_dist),
109 std::vector<float> _dist(N*3);
110 float* dist = &_dist[0], *tdist = dist + N, *tdist2 = tdist + N;
62 KMeansPPDistanceComputer( float *_tdist2, const float *_data, const float *_dist, int _dims, size_t _step, size_t _stepci ) argument
H A Dstat.cpp3584 Mat& _dist, Mat& _nidx, int _K,
3590 dist = &_dist;
3648 OutputArray _dist, int dtype, OutputArray _nidx,
3666 _dist.create(src1.rows, (K > 0 ? K : src2.rows), dtype);
3667 Mat dist = _dist.getMat(), nidx;
/external/opencv3/modules/imgproc/src/
H A Ddistransform.cpp70 distanceTransform_3x3( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics ) argument
80 float* dist = _dist.ptr<float>();
83 int dststep = (int)(_dist.step/sizeof(dist[0]));
143 distanceTransform_5x5( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics ) argument
154 float* dist = _dist.ptr<float>();
157 int dststep = (int)(_dist.step/sizeof(dist[0]));
233 distanceTransformEx_5x5( const Mat& _src, Mat& _temp, Mat& _dist, Mat& _labels, const float* metrics ) argument
245 float* dist = _dist.ptr<float>();
249 int dststep = (int)(_dist.step/sizeof(dist[0]));
/external/opencv3/modules/ml/src/
H A Dkdtree.cpp268 PQueueElem(float _dist, int _idx) : dist(_dist), idx(_idx) {}
276 OutputArray _dist, OutputArray _labels) const
408 if( _dist.needed() )
409 sqrt(Mat(K, 1, CV_32F, dist), _dist);
/external/libvorbis/vq/
H A Dmetrics.c83 static float _dist(int el,float *a, float *b){ function
104 float this=_dist(c->c->dim,_now(c,j),_now(c,k));
H A Dvqgen.c60 float _dist(vqgen *v,float *a, float *b){ function
109 float this=_dist(v,_now(v,j),_now(v,k));
260 v->metric_func=_dist;
/external/opencv/ml/include/
H A Dml.h302 CvMat* _neighbor_responses, CvMat* _dist, Cv32suf* sort_buf ) const;
/external/opencv3/apps/traincascade/
H A Dold_ml.hpp273 CvMat* _neighbor_responses, CvMat* _dist, Cv32suf* sort_buf ) const;

Completed in 313 milliseconds