Keypoint Detection
Transformers
PyTorch
Safetensors
superpoint
feature-extraction
vision
image-matching
Instructions to use magic-leap-community/superpoint with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use magic-leap-community/superpoint with Transformers:
# Load model directly from transformers import AutoImageProcessor, AutoModel processor = AutoImageProcessor.from_pretrained("magic-leap-community/superpoint") model = AutoModel.from_pretrained("magic-leap-community/superpoint", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -84,7 +84,7 @@ outputs = model(**inputs)
|
|
| 84 |
|
| 85 |
We can now visualize the keypoints.
|
| 86 |
|
| 87 |
-
```
|
| 88 |
import matplotlib.pyplot as plt
|
| 89 |
import torch
|
| 90 |
|
|
|
|
| 84 |
|
| 85 |
We can now visualize the keypoints.
|
| 86 |
|
| 87 |
+
```python
|
| 88 |
import matplotlib.pyplot as plt
|
| 89 |
import torch
|
| 90 |
|