Ajout Readme + Modif mineures interface

This commit is contained in:
Unknown 2018-08-10 16:57:26 +02:00
parent 1c72d90e9a
commit 3300e0efd3
100 changed files with 298 additions and 63 deletions

View file

@ -494,7 +494,7 @@ bool ASIFT_matcher::computeCenter(int& cx, int& cy) const
* threshold : Filtering coefficient. 1-Keep 68% of the keypoints / 2-Keep 95% of the keypoints / 3-Keep 99% of the keypoints. Default : 2.
* Return true if the filtering is done.
*/
bool ASIFT_matcher::distFilter(int threshold)
bool ASIFT_matcher::distFilter(float threshold)
{
if(_showInfo)
cout<<"filtering keypoint..."<<endl;
@ -565,6 +565,11 @@ bool ASIFT_matcher::distFilter(int threshold)
_num_matchings[i]=new_match.size();
}
//Update number of remaining points
_total_num_matchings = 0;
for(unsigned int i=0; i<_num_matchings.size();i++)
_total_num_matchings+=_num_matchings[i];
//Save filtered matchs
_matchings = filtered_match;