Skip to content
Snippets Groups Projects

Resolve "Implementation of Falko lib"

Merged Sergi Pujol Badell requested to merge 26-implementation-of-falko-lib into master
4 files
+ 39
16
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 19
3
@@ -11,13 +11,29 @@
#include <iostream>
#include <fstream>
/**************************
* Falko includes *
**************************/
#include <falkolib/Feature/FALKO.h>
#include <falkolib/Feature/CGH.h>
#include <falkolib/Feature/BSC.h>
#include <falkolib/Feature/FALKOExtractor.h>
#include <falkolib/Feature/BSCExtractor.h>
#include <falkolib/Feature/CGHExtractor.h>
#include <falkolib/Matching/NNMatcher.h>
#include <falkolib/Matching/AHTMatcher.h>
namespace laserscanutils
{
template <typename D>
struct cornerScene{
std::vector<double> keypointsList;
std::vector<double> descriptorsList;
std::vector<falkolib::FALKO> keypointsList;
std::vector<D> descriptorsList;
};
} /* namespace laserscanutils */
#endif /* CORNER_SCENE_H_ */
\ No newline at end of file
#endif /* CORNER_SCENE_H_ */
Loading