#ifndef KNNCOLLE_FIND_NEAREST_NEIGHBORS_HPP #define KNNCOLLE_FIND_NEAREST_NEIGHBORS_HPP #include #include #include #include "Base.hpp" /** * @file find_nearest_neighbors.hpp * * @brief Find nearest neighbors from an existing index. */ namespace knncolle { /** * List of nearest neighbors for multiple observations. * Each entry corresponds to an observation and contains the nearest neighbors as (index, distance) pairs for that observation. * * @tparam INDEX_t Integer type for the indices. * @tparam DISTANCE_t Floating point type for the distances. */ template using NeighborList = std::vector > >; /** * Find the nearest neighbors within a pre-built index. * This is a convenient wrapper around `Base::find_nearest_neighbors` that saves the caller the trouble of writing a loop. * * @tparam INDEX_t Integer type for the indices in the output object. * @tparam DISTANCE_t Floating point type for the distances in the output object * @tparam InputINDEX_t Integer type for the indices in the input index. * @tparam InputDISTANCE_t Floating point type for the distances in the input index. * @tparam QUERY_t Floating point type for the query data in the input index. * * @param ptr Pointer to a `Base` index. * @param k Number of nearest neighbors. * * @return A `NeighborList` of length equal to the number of observations in `ptr->nobs()`. * Each entry contains the `k` nearest neighbors for each observation, sorted by increasing distance. */ template NeighborList find_nearest_neighbors(const Base* ptr, int k) { auto n = ptr->nobs(); NeighborList output(n); #ifndef KNNCOLLE_CUSTOM_PARALLEL #pragma omp parallel for for (size_t i = 0; i < n; ++i) { #else KNNCOLLE_CUSTOM_PARALLEL(n, [&](size_t first, size_t last) -> void { for (size_t i = first; i < last; ++i) { #endif if constexpr(std::is_same::value && std::is_same::value) { output[i] = ptr->find_nearest_neighbors(i, k); } else { auto current = ptr->find_nearest_neighbors(i, k); for (const auto& x : current) { output[i].emplace_back(x.first, x.second); } } } #ifdef KNNCOLLE_CUSTOM_PARALLEL }); #endif return output; } /** * Find the nearest neighbors within a pre-built search index. * Here, only the neighbor indices are returned, not the distances. * * @tparam INDEX_t Integer type for the indices in the output object. * @tparam InputINDEX_t Integer type for the indices in the input index. * @tparam InputDISTANCE_t Floating point type for the distances in the input index. * @tparam QUERY_t Floating point type for the query data in the input index. * * @param ptr Pointer to a `Base` index. * @param k Number of nearest neighbors. * * @return A vector of vectors of length equal to the number of observations in `ptr->nobs()`. * Each vector contains the indices of the `k` nearest neighbors for each observation, sorted by increasing distance. */ template std::vector > find_nearest_neighbors_index_only(const Base* ptr, int k) { auto n = ptr->nobs(); std::vector > output(n); #ifndef KNNCOLLE_CUSTOM_PARALLEL #pragma omp parallel for for (size_t i = 0; i < n; ++i) { #else KNNCOLLE_CUSTOM_PARALLEL(n, [&](size_t first, size_t last) -> void { for (size_t i = first; i < last; ++i) { #endif auto current = ptr->find_nearest_neighbors(i, k); for (const auto& x : current) { output[i].push_back(x.first); } } #ifdef KNNCOLLE_CUSTOM_PARALLEL }); #endif return output; } } #endif