int Index\_<T>::radiusSearch(const vector<T>\& query, \par
vector<int>\& indices, \par
vector<int>\& indices, \par
vector<float>\& dists, \par
vector<float>\& dists, \par
float radius, \par
float radius, \par
const SearchParams\& params);}
const SearchParams\& params);\newline
\begin{description}
int Index\_<T>::radiusSearch(const Mat\& query, \par
\cvarg{query}{The query point}
\cvarg{indices}{Vector that will contain the indices of the points found within the search radius in decreasing order of the distance to the query point. If the number of neighbors in the search radius is bigger than the size of this vector, the ones that don't fit in the vector are ignored. }
\cvarg{dists}{Vector that will contain the distances to the points found within the search radius}
\cvarg{radius}{The search radius}
\cvarg{params}{Search parameters}
\end{description}
\cvCppFunc{cv::flann::Index_<T>::radiusSearch}
Performs a radius nearest neighbor search for multiple query points.
\cvarg{indices}{Indices of the nearest neighbors found}
\cvarg{indices}{Vector that will contain the indices of the points found within the search radius in decreasing order of the distance to the query point. If the number of neighbors in the search radius is bigger than the size of this vector, the ones that don't fit in the vector are ignored. }
\cvarg{dists}{Distances to the nearest neighbors found}
\cvarg{dists}{Vector that will contain the distances to the points found within the search radius}