|
@@ -0,0 +1,30 @@
|
|
|
+/**
|
|
|
+* @file testFeatureLearning.cpp
|
|
|
+* @brief test the feature learning routines to incrementally increase / adapt the codebook currently used
|
|
|
+* @author Alexander Freytag
|
|
|
+* @date 11-04-2013
|
|
|
+*/
|
|
|
+
|
|
|
+#include <core/basics/Config.h>
|
|
|
+#include <core/basics/ResourceStatistics.h>
|
|
|
+
|
|
|
+
|
|
|
+using namespace OBJREC;
|
|
|
+
|
|
|
+using namespace NICE;
|
|
|
+
|
|
|
+using namespace std;
|
|
|
+
|
|
|
+/**
|
|
|
+ test feature learning routines
|
|
|
+*/
|
|
|
+int main( int argc, char **argv )
|
|
|
+{
|
|
|
+ std::set_terminate( __gnu_cxx::__verbose_terminate_handler );
|
|
|
+
|
|
|
+ Config conf( argc, argv );
|
|
|
+
|
|
|
+ ResourceStatistics rs;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|