Papers › BANSAC: A dynamic BAyesian Network for adaptive SAmple Consensus

BANSAC: A dynamic BAyesian Network for adaptive SAmple Consensus

15 Sep 2023ICCV 2023 1arXiv:2309.08690archive 2025-07-28

Valter Piedade, Pedro Miraldo

RANSAC-based algorithms are the standard techniques for robust estimation in computer vision. These algorithms are iterative and computationally expensive; they alternate between random sampling of data, computing hypotheses, and running inlier counting. Many authors tried different approaches to improve efficiency. One of the major improvements is having a guided sampling, letting the RANSAC cycle stop sooner. This paper presents a new adaptive sampling process for RANSAC. Previous methods either assume no prior information about the inlier/outlier classification of data points or use some previously computed scores in the sampling. In this paper, we derive a dynamic Bayesian network that updates individual data points' inlier scores while iterating RANSAC. At each iteration, we apply weighted sampling using the updated scores. Our method works with or without prior data point scorings. In addition, we use the updated inlier/outlier scoring for deriving a new stopping criterion for the RANSAC loop. We test our method in multiple real-world datasets for several applications and obtain state-of-the-art results. Our method outperforms the baselines in accuracy while needing less computational time.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2309.08690")

Code

Syntology Ran 9 of 23 code samples harvested from 2 repositories linked to this paper; 14 have no recorded run. Of those that ran: 9 ran with no contract checked.

By repository: official repository: 9 samples from 1 repository, 7 ran; found in paper text by Syntology: 14 samples from 1 repository, 2 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

merlresearch/bansac officialmentioned in paperAGPL-3.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

23 samples harvested; 9 ran; 0 honoured the contract we drafted; 14 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

9ran
14unverified

Licence: 9 of the 23 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

calc_mAA_pose merlresearch/bansac/evaluation_homography_script.py official repository ran fingerprinted AGPL-3.0 (copyleft) · pointer only · 89311fed6a0bb7e7 · report
filter_outlier_estimates merlresearch/bansac/extra_functions.py official repository ran AGPL-3.0 (copyleft) · pointer only · 7034acf17d21781e · report
filter_outlier_estimates_h merlresearch/bansac/extra_functions.py official repository ran AGPL-3.0 (copyleft) · pointer only · 2d73cf40d9b8491c · report
is_problem_essential merlresearch/bansac/evaluation_relative_pose_script.py official repository ran AGPL-3.0 (copyleft) · pointer only · 16ca441629f05f9e · report
is_problem_fundamental merlresearch/bansac/evaluation_relative_pose_script.py official repository ran AGPL-3.0 (copyleft) · pointer only · e2a9531039b8f647 · report
load_h5 merlresearch/bansac/utils.py official repository ran fingerprinted AGPL-3.0 (copyleft) · pointer only · c7761fbbd6deedc9 · report
normalize_keypoints merlresearch/bansac/utils.py official repository ran AGPL-3.0 (copyleft) · pointer only · 488d979debc09ee1 · report
get_E_from_F merlresearch/bansac/utils.py official repository unverified AGPL-3.0 (copyleft) · pointer only · fae4ae4068906ca6 · report
get_time_avg_eval merlresearch/bansac/evaluation_homography_script.py official repository unverified AGPL-3.0 (copyleft) · pointer only · 1144116559fc1644 · report
get_single_result_nmnet ducha-aiki/ransac-tutorial-2020-data/create_E_submission.py found in paper text by Syntology ran Apache-2.0 (permissive) · 5e94c57a3b57b0a8 · report
norm_test_data ducha-aiki/ransac-tutorial-2020-data/create_F_submission.py found in paper text by Syntology ran Apache-2.0 (permissive) · 94e9a3bb3e200ed8 · report
create_F_submission_cv2 ducha-aiki/ransac-tutorial-2020-data/create_opencv_F_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 3352be6badc979dc · report
create_cv2_submission ducha-aiki/ransac-tutorial-2020-data/create_opencv_homography_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · e072c080564ed733 · report
eval_single_result ducha-aiki/ransac-tutorial-2020-data/eval_H_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · b292ac3a2d5644f7 · report
evaluate_results ducha-aiki/ransac-tutorial-2020-data/create_opencv_F_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · c471f67bff60d8ba · report
evaluate_results ducha-aiki/ransac-tutorial-2020-data/create_opencv_homography_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 6a8ff33c334e3d91 · report
evaluate_results ducha-aiki/ransac-tutorial-2020-data/eval_E_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · d60972f016f28b3c · report
evaluate_results ducha-aiki/ransac-tutorial-2020-data/eval_F_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 529157dfe8856630 · report
evaluate_results ducha-aiki/ransac-tutorial-2020-data/eval_H_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 5c4b84f16433a7d0 · report
get_single_result ducha-aiki/ransac-tutorial-2020-data/create_E_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 378300939a1cd4ea · report
get_single_result_filtered ducha-aiki/ransac-tutorial-2020-data/create_E_submission.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 9f34abc565b4b791 · report
grid_search_hypers_opencv ducha-aiki/ransac-tutorial-2020-data/create_opencv_F_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 940ad3906b738f2d · report
grid_search_hypers_opencv ducha-aiki/ransac-tutorial-2020-data/create_opencv_homography_submission_example.py found in paper text by Syntology unverified Apache-2.0 (permissive) · deff7e2a474adf99 · report

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections