template struct cvflann::index_creator

#include <all_indices.h>

template <
    typename KDTreeCapability,
    typename VectorSpace,
    typename Distance
    >
struct index_creator
{
    // methods

    static
    NNIndex<Distance>*
    create(
        const Matrix<typename Distance::ElementType>& dataset,
        const IndexParams& params,
        const Distance& distance
        );
};