Skip to main content

RoMa v2: Harder Better Faster Denser Feature Matching

Project description

RoMa v2 🤖: Harder Better Faster Denser Feature Matching

Johan Edstedt · David Nordström · Yushan Zhang · Georg Bökman · Jonathan Astermark · Viktor Larsson · Anders Heyden · Fredrik Kahl · Mårten Wadenbäck · Michael Felsberg

Paper | Project Page


example

How to Use

from romav2 import RoMaV2

# load pretrained model
model = RoMaV2()
# Match densely for any image-like pair of inputs
preds = model.match(img_A_path, img_B_path)

# you can also run the forward method directly as 
# preds = model(img_A, img_B)

# Sample 5000 matches for estimation
matches, overlaps, precision_AB, precision_BA = model.sample(preds, 5000)

# Convert to pixel coordinates (RoMaV2 produces matches in [-1,1]x[-1,1])
kptsA, kptsB = model.to_pixel_coordinates(matches, H_A, W_A, H_B, W_B)

# Find a fundamental matrix (or anything else of interest)
F, mask = cv2.findFundamentalMat(
    kptsA.cpu().numpy(), kptsB.cpu().numpy(), ransacReprojThreshold=0.2, method=cv2.USAC_MAGSAC, confidence=0.999999, maxIters=10000
)

We additionally provide two demos in the demos folder, which might help in understanding.

Setup/Install

In your python environment (tested on Linux python 3.12), run:

uv pip install -e .

or

uv sync

Benchmarks

If you do not already have MegaDepth and ScanNet, you can the following to download them:

source scripts/eval_prep.sh

Mega-1500

uv run tests/test_mega1500.py

ScanNet-1500

uv run tests/test_scannet1500.py

Expected Results

Experiments on ScanNet-1500 and MegaDepth-1500 are provided in the tests folder. Running these gave me ScanNet-1500: [34.0, 56.5, 73.9], and Mega-1500: [62.8, 76,8, 86.5], which are similar to the results of the paper.

Fused local correlation kernel

Include the --extra fused-local-corr flag as:

uv sync --extra fused-local-corr

or

uv pip install romav2[fused-local-corr]

or

uv add romav2[fused-local-corr]

Settings

By twiddling with some different settings you may reach better results on your task of interest. Some important ones, which we enable setting to some reasonable defaults through model.apply_setting, are:

model.H_lr, model.W_lr: height and width for the image pair.

model.H_hr, model.W_hr: height and width for a high resolution version of the image pair (used for upsampling as in RoMa)

model.bidirectional: Useful for getting more diverse matches, and for estimating the covariance matrix in both directions.

model.threshold: Value between [0,1]. Used to set overlap prediction above it to 1. Useful for Mega1500.

model.balanced_sampling: Diverse sampling, same as RoMa. Typically helps to get better RANSAC estimates.

License

All our code except DINOv3 is MIT license. DINOv3 has a custom license, see DINOv3.

Acknowledgement

Our codebase builds mainly on the code in RoMa. We were additionally inspired by UFM and MapAnything, particularly for the datasets used to train the models.

BibTeX

If you find our models useful, please consider citing our paper!

@article{edstedt2025romav2,
  title={{RoMa v2: Harder Better Faster Denser Feature Matching}},
  author={Johan Edstedt, David Nordström, Yushan Zhang, Georg Bökman, Jonathan Astermark, Viktor Larsson, Anders Heyden, Fredrik Kahl, Mårten Wadenbäck, Michael Felsberg},
  journal={arXiv preprint arXiv:2511.15706},
  year={2025}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

romav2-2.0.0.tar.gz (37.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

romav2-2.0.0-py3-none-any.whl (50.6 kB view details)

Uploaded Python 3

File details

Details for the file romav2-2.0.0.tar.gz.

File metadata

  • Download URL: romav2-2.0.0.tar.gz
  • Upload date:
  • Size: 37.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for romav2-2.0.0.tar.gz
Algorithm Hash digest
SHA256 b68e45c7970f0621c87ce842e8cae1eda55ad33feb139b9efa59d1a27164e5a3
MD5 21646d269b734f6271953a85c5d75390
BLAKE2b-256 d039c847619005984c7f5119d984d2b0b2f9641ecc7b1fed9b047a32052dcfe3

See more details on using hashes here.

File details

Details for the file romav2-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: romav2-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 50.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.15 {"installer":{"name":"uv","version":"0.9.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for romav2-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e3efbb6326243fb5c9564e879e2a272cd5bdcf219e67ec93879815ab0c4ab39b
MD5 ede11631777095109d1e6dca89d6e86a
BLAKE2b-256 04cb5876b0ff42450d1fe6e8c2317e034ac9eca57fc9ca7e88d6b0b8f3bc029e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page