标签:
FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset.
FLANN is written in C++ and contains bindings for the following languages: C, MATLAB and Python.
In our experiments we have found FLANN to be about one order of magnitude faster on many datasets (in query time), than previously available approximate nearest neighbor search software.
More information and experimental results can be found in the following papers:
The latest version of FLANN can be downloaded from here:
If you don‘t want to compile FLANN from source you can try the binary installers prepared by the Point Cloud Library (PCL) project here (Ubuntu/Debian PPA, Windows Installers and Mac OS X Universal Binary).
If you want to try out the latest changes or contribute to FLANN, then it‘s recommended that you checkout the git source repository: git clone git://github.com/mariusmuja/flann.git
If you just want to browse the repository, you can do so by going here.
The FLANN library was developed and tested under Linux. A C++ compiler is required to build FLANN. The Python bindings require the presence of the Numerical Python (numpy) package.
FLANN is distributed under the terms of the BSD License.
If you have any questions or comments please email them to: mariusm@cs.ubc.ca.
Please report bugs or feature requests using github‘s issue tracker.
from: http://www.cs.ubc.ca/research/flann/
快速近似最近邻搜索库 FLANN - Fast Library for Approximate Nearest Neighbors
标签:
原文地址:http://www.cnblogs.com/GarfieldEr007/p/5158755.html