Reputation: 37
results = matchFeatures(matrix , matrix2);
this works very well for matching the exact features but by using features from images taken on separate occasions causes small differences.
how do i implement a tolerance into this so small differences will still count as a match.
any help or guidance would be greatly appreciated.
Upvotes: 2
Views: 1470
Reputation: 39419
Look at the documentation for matchFeatures. There are many options to tweak. The default matching 'Method' is 'NearestNeigborRatio', so the main knob there is the 'MaxRatio' parameter. Increasing its value will give you more matches.
Also, a lot depends on what interest point detector and what feature descriptor you are using.
Upvotes: 1