Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,32 @@
|
|
| 1 |
---
|
| 2 |
library_name: image-matching-models
|
| 3 |
license: mit
|
| 4 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: image-matching-models
|
| 3 |
license: mit
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
---
|
| 7 |
+
license: mit
|
| 8 |
+
tags:
|
| 9 |
+
- image-matching
|
| 10 |
+
- computer-vision
|
| 11 |
+
- feature-matching
|
| 12 |
+
library_name: image-matching-models
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Steerers
|
| 16 |
+
|
| 17 |
+
Rotation invariant keypoint matching model. Uses the DeDoDe keypoint detector.
|
| 18 |
+
|
| 19 |
+
## Usage
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
from imm import get_matcher
|
| 23 |
+
|
| 24 |
+
matcher = get_matcher("patch2pix", device=device)
|
| 25 |
+
result = matcher(img0, img1)
|
| 26 |
+
# result.keys() = ["num_inliers", "H", "all_kpts0", "all_kpts1", "all_desc0", "all_desc1", "matched_kpts0", "matched_kpts1", "inlier_kpts0", "inlier_kpts1"]
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
## Links
|
| 31 |
+
- [Original repository](https://github.com/georg-bn/rotation-steerers)
|
| 32 |
+
- [Image Matching Models](https://github.com/gmberton/image-matching-models)
|