Skip to content

20treeAI/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

Releases

No releases published

Packages

No packages published

Languages

  • C 66.1%
  • C++ 30.6%
  • Python 2.7%
  • Makefile 0.6%