Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: image-matching-models
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
library_name: image-matching-models
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# DeDoDe
|
| 10 |
+
|
| 11 |
+
DeDoDe is used in Steerers.
|
| 12 |
+
|
| 13 |
+
## Usage
|
| 14 |
+
|
| 15 |
+
```python
|
| 16 |
+
from imm import get_matcher
|
| 17 |
+
|
| 18 |
+
matcher = get_matcher("steerers", device=device)
|
| 19 |
+
result = matcher(img0, img1)
|
| 20 |
+
# result.keys() = ["num_inliers", "H", "all_kpts0", "all_kpts1", "all_desc0", "all_desc1", "matched_kpts0", "matched_kpts1", "inlier_kpts0", "inlier_kpts1"]
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Links
|
| 25 |
+
- [Original repository](https://github.com/Parskatt/DeDoDe)
|
| 26 |
+
- [Image Matching Models](https://github.com/gmberton/image-matching-models)
|