https://github.com/long-gong/ann
Approximate Nearest Neighbors
https://github.com/long-gong/ann
ann cpp kd-tree lsh
Last synced: about 1 month ago
JSON representation
Approximate Nearest Neighbors
- Host: GitHub
- URL: https://github.com/long-gong/ann
- Owner: long-gong
- License: other
- Created: 2019-02-22T05:46:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T05:53:27.000Z (over 7 years ago)
- Last Synced: 2025-12-25T14:57:21.131Z (7 months ago)
- Topics: ann, cpp, kd-tree, lsh
- Language: C++
- Homepage: https://github.com/long-gong/ANN
- Size: 661 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
README
# ANN: Approximate Nearest Neighbors
Copy from https://www.cs.umd.edu/~mount/ANN/
## Usage
### Using `make`
```bash
git clone https://github.com/long-gong/ANN.git
cd ANN
make
```
### Using 'cmake'
```bash
git clone https://github.com/long-gong/ANN.git
cd ANN
mkdir build && cd build
cmake ..
make
```