Home
last modified time | relevance | path

Searched refs:_dist (Results 1 – 5 of 5) sorted by relevance

/external/opencv/ml/src/
Dmlknearest.cpp215 CvMat* _dist, Cv32suf* sort_buf ) const in write_results() argument
290 if( _dist ) in write_results()
292 dst = (float*)(_dist->data.ptr + (start + i)*_dist->step); in write_results()
306 const float** _neighbors, CvMat* _neighbor_responses, CvMat* _dist ) const in find_nearest()
349 if( _dist ) in find_nearest()
351 if( !CV_IS_MAT(_dist) || CV_MAT_TYPE(_dist->type) != CV_32FC1 || in find_nearest()
352 _dist->rows != _samples->rows || _dist->cols != k ) in find_nearest()
387 _results, _neighbor_responses, _dist, sort_buf ); in find_nearest()
/external/opencv/cv/src/
D_cvkdtree.hpp304 bbf_nn(const __valuetype & _p, accum_type _dist) in bbf_nn()
305 : p(&_p), dist(_dist) { in bbf_nn()
316 bbf_node(int _node, accum_type _dist) in bbf_node()
317 : node(_node), dist(_dist) { in bbf_node()
/external/libvorbis/vq/
Dmetrics.c83 static float _dist(int el,float *a, float *b){ in _dist() function
104 float this=_dist(c->c->dim,_now(c,j),_now(c,k)); in cell_spacing()
Dvqgen.c60 float _dist(vqgen *v,float *a, float *b){ in _dist() function
109 float this=_dist(v,_now(v,j),_now(v,k)); in vqgen_cellmetric()
260 v->metric_func=_dist; in vqgen_init()
/external/opencv/ml/include/
Dml.h302 CvMat* _neighbor_responses, CvMat* _dist, Cv32suf* sort_buf ) const;