fenglu96 commited on
Commit
3515d92
·
verified ·
1 Parent(s): 92a3e5d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # ImAge
6
+
7
+ ImAge is an implicit aggregation method to get robust global image descriptors for visual place recognition, which neither modifies the backbone nor needs an extra aggregator. This work outperforms previous SOTA methods on several VPR benchmarks.
8
+
9
+ **Paper:** [Towards Implicit Aggregation: Robust Image Representation for Place Recognition in the Transformer Era](https://arxiv.org/pdf/2511.06024) (NeurIPS 2025)
10
+
11
+ **GitHub:** [Lu-Feng/ImAge](https://github.com/Lu-Feng/ImAge)
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ import torch
17
+ model = torch.hub.load("Lu-Feng/ImAge", "ImAge")
18
+ model.eval()
19
+
20
+ # Extract descriptor from an image
21
+ image = torch.randn(1, 3, 322, 322) # [B, 3, H, W]
22
+ with torch.no_grad():
23
+ descriptor = model(image) # [B, 6144] L2-normalized descriptor
24
+ ```
25
+
26
+ ## Citation
27
+
28
+ ```bibtex
29
+ @inproceedings{ImAge,
30
+ title={Towards Implicit Aggregation: Robust Image Representation for Place Recognition in the Transformer Era},
31
+ author={Feng Lu and Tong Jin and Canming Ye and Xiangyuan Lan and Yunpeng Liu and Chun Yuan},
32
+ booktitle={The Annual Conference on Neural Information Processing Systems},
33
+ year={2025}
34
+ }
35
+ ```