Skip to content

Python wrapper for Enric Meinhardt's imscript RANSAC C implementation

Notifications You must be signed in to change notification settings

centreborelli/ransac

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RANSAC

Build Status PyPI version

Python wrapper around Enric Meinhardt's C implementation of RANSAC distributed in imscript.

Installation

The ransac Python package can be installed from PyPI with

pip install ransac

Alternatively, it can be installed from sources in editable mode with

git clone https://github.com/cmla/ransac
cd ransac
pip install -e .

Usage

import numpy as np
import ransac

matches = np.loadtxt("tests/data/matches.txt")
inliers, F = ransac.find_fundamental_matrix(matches)

About

Python wrapper for Enric Meinhardt's imscript RANSAC C implementation

Resources

Stars

Watchers

Forks

Packages

No packages published