Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to display the matching status of each pair of feature points #106

Closed
MrTHMX opened this issue Jan 17, 2024 · 2 comments
Closed

How to display the matching status of each pair of feature points #106

MrTHMX opened this issue Jan 17, 2024 · 2 comments

Comments

@MrTHMX
Copy link

MrTHMX commented Jan 17, 2024

Is this a correct method? The matching results I get using this method have a large error.

for k in range(0, m_kpts0.shape[0]):
    axes = viz2d.plot_images([image0, image1])
    viz2d.plot_matches(m_kpts0[k:k + 1, :], m_kpts0[k:k + 1, :], color="lime", lw=0.2)
@Phil26AT
Copy link
Collaborator

I think it should be:

for k in range(0, m_kpts0.shape[0]):
    axes = viz2d.plot_images([image0, image1])
    viz2d.plot_matches(m_kpts0[k:k + 1, :], m_kpts1[k:k + 1, :], color="lime", lw=0.2)

However, there are simpler ways to plot the matches (see e.g. the demo notebook).

@MrTHMX
Copy link
Author

MrTHMX commented Feb 19, 2024

thanks

@MrTHMX MrTHMX closed this as completed Feb 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants