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

https://github.com/willguimont/prosac

PROSAC algorithm in python
https://github.com/willguimont/prosac

data-science machine-learning machine-learning-algorithms prosac random-sample-consensus random-sampling ransac ransac-algorithm

Last synced: 6 months ago
JSON representation

PROSAC algorithm in python

Awesome Lists containing this project

README

          

# RANSAC and PROSAC algorithms in python

This package provides an implementation of the RANSAC and PROSAC algorithms in Python.
This implementation draws inspiration from [prosac.c](http://devernay.free.fr/vision/src/prosac.c).

Explanation of the PROSAC algorithm can be found
at: [https://willguimont.github.io/cs/2019/12/26/prosac-algorithm.html](https://willguimont.github.io/cs/2019/12/26/prosac-algorithm.html)

## Installation

```bash
pip install prosac
```

## Usage

See the `examples` directory for examples of usage.

## Installation from source

Add the following line in your `requirements.txt`:

```
git+https://github.com/willGuimont/PROSAC
```