Papers › GlueStick: Robust Image Matching by Sticking Points and Lines Together

GlueStick: Robust Image Matching by Sticking Points and Lines Together

4 Apr 2023ICCV 2023 1arXiv:2304.02008archive 2025-07-28

Rémi Pautrat, Iago Suárez, Yifan Yu, Marc Pollefeys, Viktor Larsson

Line segments are powerful features complementary to points. They offer structural cues, robust to drastic viewpoint and illumination changes, and can be present even in texture-less areas. However, describing and matching them is more challenging compared to points due to partial occlusions, lack of texture, or repetitiveness. This paper introduces a new matching paradigm, where points, lines, and their descriptors are unified into a single wireframe structure. We propose GlueStick, a deep matching Graph Neural Network (GNN) that takes two wireframes from different images and leverages the connectivity information between nodes to better glue them together. In addition to the increased efficiency brought by the joint matching, we also demonstrate a large boost of performance when leveraging the complementary nature of these two features in a single architecture. We show that our matching strategy outperforms the state-of-the-art approaches independently matching line segments and points for a wide variety of datasets and tasks. The code is available at https://github.com/cvg/GlueStick.

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="2304.02008")

Code

Syntology Ran 20 of 29 code samples harvested from 2 repositories linked to this paper; 9 have no recorded run. Of those that ran: 2 ran · violated contract; 2 ran · our draft was wrong; 5 ran · fixture could not drive it; 11 ran with no contract checked.

By repository: official repository: 14 samples from 1 repository, 9 ran; community (archive-listed): 15 samples from 1 repository, 11 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

cvg/gluestick officialmentioned in papermentioned on GitHubpytorchMIT 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

29 samples harvested; 20 ran; 0 honoured the contract we drafted; 9 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.

2ran · violated contract
2ran · our draft was wrong
5ran · fixture could not drive it
11ran
9unverified

Licence: 15 of the 29 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.

AttentionalPropagation cvg/GlueStick/gluestick/models/gluestick.py official repository ran MIT (permissive) · 0bf652d5cd14f0d1 · report
EndPtEncoder cvg/GlueStick/gluestick/models/gluestick.py official repository ran MIT (permissive) · 0744c1b780ad0b62 · report
GNNLayer cvg/GlueStick/gluestick/models/gluestick.py official repository ran MIT (permissive) · c8110ff5f4741d3d · report
KeypointEncoder cvg/GlueStick/gluestick/models/gluestick.py official repository ran MIT (permissive) · 92f7e8a94de3df6a · report
MLP cvg/GlueStick/gluestick/models/gluestick.py official repository ran · fixture could not drive it MIT (permissive) · 54fd8d988f6f0e09 · report
MultiHeadedAttention cvg/GlueStick/gluestick/models/gluestick.py official repository ran MIT (permissive) · 35811a32bf5387ee · report
arange_like cvg/GlueStick/gluestick/models/gluestick.py official repository ran · our draft was wrong fingerprinted MIT (permissive) · a6e4f5a51c5441d3 · report
log_double_softmax cvg/GlueStick/gluestick/models/gluestick.py official repository ran · fixture could not drive it MIT (permissive) · 198c0e35a834307d · report
normalize_keypoints cvg/GlueStick/gluestick/models/gluestick.py official repository ran · fixture could not drive it MIT (permissive) · 7a6d49963474000d · report
AttentionalGNN cvg/GlueStick/gluestick/models/gluestick.py official repository unverified MIT (permissive) · 2e1f2c4bc7c2ecd9 · report
BaseModel cvg/GlueStick/gluestick/models/gluestick.py official repository unverified MIT (permissive) · d422ebc642067c6e · report
GlueStick cvg/GlueStick/gluestick/models/gluestick.py official repository unverified MIT (permissive) · 7edc3e49a3a70c3c · report
LineLayer cvg/GlueStick/gluestick/models/gluestick.py official repository unverified MIT (permissive) · 3c20b46867b9cf11 · report
attention cvg/GlueStick/gluestick/models/gluestick.py official repository unverified MIT (permissive) · 5317c011246420e0 · report
AttentionalPropagation Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran no licence file found · pointer only · 8879256fa01366c9 · report
EndPtEncoder Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran no licence file found · pointer only · 91eb969dfeb55794 · report
GNNLayer Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran no licence file found · pointer only · 4094d3ffd7fbc53a · report
KeypointEncoder Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran no licence file found · pointer only · 59b08bff5dc85b8f · report
LineLayer Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran no licence file found · pointer only · 76d2114282e14498 · report
MLP Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran · fixture could not drive it no licence file found · pointer only · 6ee94794a1b527f5 · report
MultiHeadedAttention Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran fingerprinted no licence file found · pointer only · 0d5fe463a1a289eb · report
attention Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran · fixture could not drive it fingerprinted no licence file found · pointer only · 35ddab8839071886 · report
dict_to_dataclass Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran · our draft was wrong no licence file found · pointer only · 46fd24631d359569 · report
gather_like_in_torch Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran · violated contract no licence file found · pointer only · 4273e23e924da510 · report
normalize_keypoints Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) ran · violated contract fingerprinted no licence file found · pointer only · 6c6c724fa54239ed · report
AttentionalGNN Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) unverified no licence file found · pointer only · 7c4811d20047f201 · report
GlueStick Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) unverified no licence file found · pointer only · baf352f0d6611c26 · report
log_double_softmax Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) unverified no licence file found · pointer only · 7e2f151d8d465b17 · report
scatter_mean Golbstein/GlueStick-tensorflow/gluestick.py community (archive-listed) unverified no licence file found · pointer only · 403889105a73bc9b · report

Tasks

Graph Neural NetworkPose EstimationVisual LocalizationVisual Place Recognition

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

Graph Neural Network

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