浏览代码

added raw version of feature-learning test program

Alexander Freytag 12 年之前
父节点
当前提交
5c42243979
共有 1 个文件被更改,包括 30 次插入0 次删除
  1. 30 0
      featureLearning/progs/testFeatureLearning.cpp

+ 30 - 0
featureLearning/progs/testFeatureLearning.cpp

@@ -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;
+}