XiSHEN0220/RANSAC-Flow

align

Closed this issue · 5 comments

Hello!I want to use your code to align my image. The image is not complicated and has few textures. Do you also need to build 20000 pairs of data sets in the 100 scenarios mentioned in the article?

Hi, thanks for your interest in our project!

I would suggest firstly aligning your images with our pre-trained model.
A demo can be found here.

Note that, one needs to install these packages.

If it doesn't work well, you could try to generate your own training pairs and perform fine-tuning on your data.

Hope it helps,

Best,

Xi

Thanks.In fine alignment, the remaining feature matching points that are not well aligned are re aligned to get the homography matrix through coarse alignment. Can I take out the code of fine alignment and use it alone. Because I have a rough alignment method, I don't know if it is feasible?

Yes, sure. You can use the fine alignment alone.
Note that the maximum displacement predicted by the fine alignment model is 24 pixels.

Is fine alignment independent of coarse alignment? I thought fine alignment was involved in the process of iteration and coarse alignment was involved. Thank you very much.

Hi,

Yes, they are independent.
You can just apply the model of the fine alignment if your pairs are already coarsely aligned.

Best,

Xi