You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how to draw the matches just like done in the paper?
I think I figured it out. Insert the code below in the demo.py file after this line: X, Y, Z = reg.register(IX, IY) (Don't forget to import numpy as np). matches = [[i, i] for i in range(0, len(X))] matches = np.asarray(matches) _, ax = plt.subplots() plot_matches( ax, IX, IY, X, Y, matches, matches_color='b') ax.axis('off') plt.show()
how to draw the matches just like done in the paper?
The text was updated successfully, but these errors were encountered: