Closed qjr1997 closed 3 years ago
I tried the “model_ours” to train “GoogleMap” . After that , I opened “Visualization.ipynb” and run it . I got the results like this. I want to ask that how can I get the true warped image with this code.
Hi,
The feature map has been extracted, then you need an initial guess of the homography and update the homography vector by using Lucas-Kanade on the feature map.
The initial guess can be:
The better the initial guess, the larger chance Lucas-Kanade can converge.
Thank you for your reply , I still have some questions . “we trained two different networks to provide the initial guess” ,is that mean "DHN" and "MHN" mentioned in the paper ? Are they included in this code or I should find them from other places ?By the way I want to know what‘s the meaning of the parameter “regular” and “special” .
Thank you for your reply , I still have some questions . “we trained two different networks to provide the initial guess” ,is that mean "DHN" and "MHN" mentioned in the paper ? Are they included in this code or I should find them from other places ?By the way I want to know what‘s the meaning of the parameter “regular” and “special” .
You can find them in this code under the folder model_ours.
One of our contribution is the feature constructor, the special means the feature map extract by our feature constructor, the regular means the feature map is just the output of a regular one channel conv
I tried the “model_ours” to train “GoogleMap” . After that , I opened “Visualization.ipynb” and run it . I got the results like this. I want to ask that how can I get the true warped image with this code.