MCPcopy Create free account
hub / github.com/danini/magsac

github.com/danini/magsac @v0.2.3

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.2.3 ↗ · + Follow
123 symbols 219 edges 15 files 33 documented · 27% updated 4mo agov0.2.3 · 2026-02-23★ 4957 open issues

Browse by type

Functions 111 Types & classes 12
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Important news

I am happy to announce that MAGSAC++ had been included in OpenCV. You can check the documentation at link. A comparison of OpenCV MAGSAC++ with the other robust estimators is at link thanks to Dmytro Mishkin.

OpenCV USAC Benchmark

The MAGSAC and MAGSAC++ algorithms for robust model fitting without using a single inlier-outlier threshold

The MAGSAC and MAGSAC++ algorithms proposed for robust model estimation without a single inlier-outlier threshold.

The MAGSAC paper is available at Link.

The MAGSAC++ available at Link.

Both methods are explained in the Latest developments in RANSAC presentation from CVPR tutorial RANSAC in 2020.

Experiments on homography, fundamental matrix, essential matrix, and 6D pose estimation are shown in the corresponding presentation from the tutorial RANSAC in 2020.

Tested on OpenCV 3.46 and 4.3. To run the executable with the examples, copy the "data" folder next to the executable or set the path in the main() function.

If you use the algorithm, please cite

@inproceedings{barath2019magsac,
    author = {Barath, Daniel and Matas, Jiri and Noskova, Jana},
    title = {{MAGSAC}: marginalizing sample consensus},
    booktitle = {Conference on Computer Vision and Pattern Recognition},
    year = {2019},
}

@inproceedings{barath2019magsacplusplus,
    author = {Barath, Daniel and Noskova, Jana and Ivashechkin, Maksym and Matas, Jiri},
    title = {{MAGSAC}++, a fast, reliable and accurate robust estimator},
    booktitle = {Conference on Computer Vision and Pattern Recognition},
    year = {2020},
}

Install from PyPI with pip

There are pre-compiled wheels for Windows and Linux for Python 3.8 - 3.11 that you can install with:

pip install pymagsac

Thanks to @akaszynski for his contributions.

Installation C++

To build and install C++-only MAGSAC/MAGSAC++, clone or download this repository and then build the project by CMAKE.

$ git clone https://github.com/danini/magsac --recursive
$ cd build
$ cmake ..
$ make

Install Python package and compile C++

python3 ./setup.py install

or

pip3 install -e .

Example project

To build the sample project showing examples of fundamental matrix, homography and essential matrix fitting, set variable CREATE_SAMPLE_PROJECT = ON when creating the project in CMAKE.

Next to the executable, copy the data folder and, also, create a results folder.

Jupyter Notebook example

The example for homography fitting is available at: notebook.

The example for fundamental matrix fitting is available at: notebook.

The example for essential matrix fitting is available at: notebook.

An example comparing different samplers on fundamental matrix estimation is available at: notebook.

Requirements

  • Eigen 3.0 or higher
  • CMake 2.8.12 or higher
  • OpenCV 3.0 or higher
  • A modern compiler with C++17 support
  • GFlags

Performance of MAGSAC++

MAGSAC++ is the state of the art according to "RANSAC in 2020" CVPR tutorial's experiments.

Performance of MAGSAC

MAGSAC is the state of the art according to the recent study Yin et.al."Image Matching across Wide Baselines: From Paper to Practice", 2020.

IMW-benchmark

IMW-Challenge

Core symbols most depended-on inside this repo

Shape

Method 75
Function 36
Class 9
Enum 3

Languages

C++97%
Python3%

Modules by API surface

src/pymagsac/include/estimators.h57 symbols
src/pymagsac/include/magsac.h19 symbols
examples/cpp_example.cpp12 symbols
src/pymagsac/include/magsac_utils.h9 symbols
src/pymagsac/src/bindings.cpp7 symbols
src/pymagsac/src/magsac_python.cpp6 symbols
src/pymagsac/include/most_similar_inlier_selector.h5 symbols
tests/test_rigid_transform.py4 symbols
src/pymagsac/include/model_score.h3 symbols
src/pymagsac/include/adaptive_inlier_selector.h1 symbols

For agents

$ claude mcp add magsac \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page