I am using FAST to detect features, Orb to extract descriptors and Bf to match them.
This works great on an image pair, but can I do it across multiple images?
I need to match the same points on three or four images.
Possible?
1 | initial version |
I am using FAST to detect features, Orb to extract descriptors and Bf to match them.
This works great on an image pair, but can I do it across multiple images?
I need to match the same points on three or four images.
Possible?
2 | No.2 Revision |
I am using FAST to detect features, Orb to extract descriptors and Bf to match them.
This works great on an image pair, but can I do it across multiple images?
I need to match the same points on three or four images.
Possible?
Currently I have:
Get features on A, Get features on B, Get features on C.
Extract descriptors for each to descriptorA, descriptorB, descriptorC.
Match A to B, match B to C.
How then, do I ensure that all three are the same points?
3 | No.3 Revision |
I am using FAST to detect features, Orb to extract descriptors and Bf to match them.
This works great on an image pair, but can I do it across multiple images?
I need to match the same points on three or four images.
Possible?
Currently I have:
Get features on A, Get features on B, Get features on C.
Extract descriptors for each to descriptorA, descriptorB, descriptorC.
Match A descriptorA to B, descriptorB, match B descriptorB to C.descriptorC.
How then, do I ensure that all three are the same points?