An open API service indexing awesome lists of open source software.

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

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
```