Spaces:
Build error
Build error
edits
Browse files
app.py
CHANGED
|
@@ -122,6 +122,7 @@ def generate_matching_superfeatures(im1, im2, scale_id=6, threshold=50, sf_ids='
|
|
| 122 |
|
| 123 |
feats1n = F.normalize(feats1, dim=1)
|
| 124 |
feats2n = F.normalize(feats2, dim=1)
|
|
|
|
| 125 |
ind_match = match(feats1n, feats2n)
|
| 126 |
print('ind', ind_match)
|
| 127 |
print('ind.shape', ind_match.shape)
|
|
|
|
| 122 |
|
| 123 |
feats1n = F.normalize(feats1, dim=1)
|
| 124 |
feats2n = F.normalize(feats2, dim=1)
|
| 125 |
+
print('feats1n.shape', feats1n.shape)
|
| 126 |
ind_match = match(feats1n, feats2n)
|
| 127 |
print('ind', ind_match)
|
| 128 |
print('ind.shape', ind_match.shape)
|