cvg / GlueStick

Joint Deep Matcher for Points and Lines 🖼️💥🖼️ (ICCV 2023)
https://iago-suarez.com/gluestick
MIT License
551 stars 43 forks source link

How to get the Homography based on point-only, line-only or points+lines matches separately? #2

Closed lin-name closed 1 year ago

lin-name commented 1 year ago

Hi, professor. This is a great work!Your architecture is so smart! I am learning your paper and code right now,and successfully execute the python scripts run.py, it can get the points& lines detected and matches correspondingly, but how can i get the Homography of -img1 and -img2 based on point-only, line-only or points+lines matches separately? Can i get the Homography just use your scripts in this repository? or i need to use any other Algorithms like SuperGlue ?

Thank you very much.

rpautrat commented 1 year ago

Hi, we used the following repository to obtain a homography from either point-only, line-only or point+line matches: https://github.com/rpautrat/homography_est/. The file run_hest_test.py provides an example on how to use it.