Home | History | Annotate | Download | only in src

Lines Matching full:_dists

474     ::cvflann::Matrix<DistanceType> _dists(dists.ptr<DistanceType>(), dists.rows, dists.cols);
476 ((IndexType*)index)->knnSearch(_query, _indices, _dists, knn,
500 ::cvflann::Matrix<DistanceType> _dists(dists.ptr<DistanceType>(), dists.rows, dists.cols);
502 return ((IndexType*)index)->radiusSearch(_query, _indices, _dists,
515 static void createIndicesDists(OutputArray _indices, OutputArray _dists,
534 if( _dists.needed() )
536 dists = _dists
541 _dists.release();
542 _dists.create( rows, minCols, dtype );
543 dists = _dists.getMat();
552 OutputArray _dists, int knn, const SearchParams& params)
557 createIndicesDists( _indices, _dists, indices, dists, query.rows, knn, knn, dtype );
593 OutputArray _dists, double radius, int maxResults,
599 createIndicesDists( _indices, _dists, indices, dists, query.rows, maxResults, INT_MAX, dtype );