Skip to content

Commit

Permalink
Update panorama.py
Browse files Browse the repository at this point in the history
  • Loading branch information
VidocqH authored Jan 3, 2021
1 parent 07ad6b3 commit 6f8a525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw3_release/panorama.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def simple_descriptor(patch):
if patch_std == 0:
patch_std = 1
feature = (patch - patch_mean) / patch_std
feature = feature.reshape(-1)
feature = feature.flatten()
### END YOUR CODE
return feature

Expand Down

0 comments on commit 6f8a525

Please sign in to comment.