-
Notifications
You must be signed in to change notification settings - Fork 44
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
Compare Multiple Image Pairs (Like Millions) #33
Comments
Hi,
Thanks for your feedback. It is an interesting question. First I would try to understand why do you have so many pairs. If it has to do with a large scene where one images has to be matched with many others, the first thing I would do it to pre-compute the Wireframe (points and lines) individually.
Of course you can use batching to speed up things.
Best,
Iago.
El 1 oct 2024, a las 23:07, Roberto Alcaraz ***@***.***> escribió:
Hi!
First of all, the work is amazing.
I am currently working in a project that involves comparing millions of image pairs (around 10M). Even though the demo is very useful, this approach takes too much time for this set of pairs.
Is it possible to compare multiple pairs at once doing something like batch processing or maybe doing parallelization? If you have any recommendations on how to approach this, I would greatly appreciate your input.
Thank you in advance :)
Rob
—
Reply to this email directly, view it on GitHub<#33>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ABYQZ3PLPZASFBUG5QYB3V3ZZMFJVAVCNFSM6AAAAABPGM262SVHI2DSMVQWIX3LMV43ASLTON2WKOZSGU3DAMRRG43TQNI>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Hi Iago, Thank you for your quick reply! Indeed, I am trying to compare multiple images to detect whether they show the same individual based on the points and lines of the pattern present in each image. This is why I have so many pairs to compare. Specifically, I have between 4.000 and 5.000 images, which results in a total of I appreciate your suggestion regarding pre-computing the Wireframe individually. Could you possibly provide an example or some guidance on how I could implement this pre-computation, or how to use batching effectively for speeding up the comparison process? Any detailed example or reference would be immensely helpful. Thank you again for your assistance! :) Best, |
Unfortunately I am ver busy and I wont have time to do it but it should be fairly simple. The code is separated by classes that take care of the different steps: Extraction, Matching, etc. If you debug the code and understand what classes are doing each part you should be able to do it on your own.
Alternatively, if your project has some economic support, I can recommend you someone who could do it for you.
Cheers,
Iago.
Enviado desde mi iPhone
El 2 oct 2024, a las 8:56, Roberto Alcaraz ***@***.***> escribió:
Hi Iago,
Thank you for your quick reply!
Indeed, I am trying to compare multiple images to detect whether they show the same individual based on the points and lines of the pattern present in each image. This is why I have so many pairs to compare. Specifically, I have between 4.000 and 5.000 images, which results in a total of $\sum\frac{n(n+1)}{2} \approx 10.000.000$ image pairs to evaluate.
I appreciate your suggestion regarding pre-computing the Wireframe individually. Could you possibly provide an example or some guidance on how I could implement this pre-computation, or how to use batching effectively for speeding up the comparison process?
Any detailed example or reference would be immensely helpful.
Thank you again for your assistance! :)
Best,
Roberto
—
Reply to this email directly, view it on GitHub<#33 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ABYQZ3M34ZTEEVLSGTRNLQDZZOKKBAVCNFSM6AAAAABPGM262SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOBXG42TGMRRGE>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Hi Iago, I checked the model files and made some modifications to achieve the functionality I wanted: Modifications
Usage
Thank you once again! |
Hi!
First of all, the work is amazing.
I am currently working in a project that involves comparing millions of image pairs (around 10M). Even though the demo is very useful, this approach takes too much time for this set of pairs.
Is it possible to compare multiple pairs at once doing something like batch processing or maybe doing parallelization? If you have any recommendations on how to approach this, I would greatly appreciate your input.
Thank you in advance :)
Rob
The text was updated successfully, but these errors were encountered: