-
Notifications
You must be signed in to change notification settings - Fork 5
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
Flipped images? #12
Comments
Reflections are not indexed currently and must be generated as needed. It seemed like a practical choice at the time since it would 2-3x the indexing time needed.
Since each image has to be loaded and indexed for each reflection this takes a lot longer. You can specify what reflections you want and use a lighter algorithm to help that. Note that the "color" algorithm doesn't use spatial information so that would work with |
Thanks for your response! After lots of trial and error, this appear to be the most effective command for my use case: cbird -use -i.algos orb -update -p.alg orb -p.odt 15 -p.mg 1 -p.refl h+v -select-type i -similar-to @ -show It works well enough (i.e. better than any other software I've tried). The only issue is mirrored images appear twice per group in the results browser. Is there a way to only make the same file show up only once per group? Is there anything I can improve upon to increase true positives without producing too many false positives? Processing time isn't something I'm too worried about because I'm never working with too many files at a time. |
Hey, happy you are finding this useful. I'm getting back into it again, maybe there is a new release this summer. orb will find rotations, so you really only need the one reflection. You can also force all results to be pairs with Besides lowering the threshold you can filter by score, add A slower option is the template matcher ( |
Hey:) I've been using your program cbird to detect similar images, and I'm incredibly impressed so far. It manages to do things a lot of paid tools do not. One thing I'm struggling with however is finding flipped images. -p.refl does not appear to work at all. The following command finds all similar images in my test folder, except any flipped images:
cbird -use "F:" -i.algos orb -update -p.alg orb -p.odt 15 -p.refl 4 -similar -show
What am I doing wrong?
The text was updated successfully, but these errors were encountered: