| 1 | initial version |
Your syntax is incorrect. Since selectPairs() is not a declared as static function, it can only be called by an instance of the class.
So you have write something like this instead:
FREAK myFreak;
myFreak.selectPairs(images, keypoints, 0.7, true)
| 2 | Missing semicolon |
Your syntax is incorrect. Since selectPairs() is not a declared as static function, it can only be called by an instance of the class.
So you have write something like this instead:
FREAK myFreak;
myFreak.selectPairs(images, keypoints, 0.7, true)
true);