Browse Source

doc update (ERC)

Johannes Ruehle 11 years ago
parent
commit
6fb710e167
1 changed files with 13 additions and 8 deletions
  1. 13 8
      features/simplefeatures/CodebookRandomForest.h

+ 13 - 8
features/simplefeatures/CodebookRandomForest.h

@@ -1,10 +1,3 @@
-/** 
-* @file CodebookRandomForest.h
-* @brief Storage for a Random Forest based codebook (Moosmann et al.)
-* @author Erik Rodner
-* @date 02/15/2008
-
-*/
 #ifndef CodebookRandomForestINCLUDE
 #define CodebookRandomForestINCLUDE
 
@@ -17,7 +10,19 @@
 
 namespace OBJREC {
 
-/** Storage for a Random Forest based codebook (Moosmann et al.) */
+/**
+ * @brief Random Forest based codebook generator (Moosmann et al.)
+ *
+ * Implementation of the Extremely randomized clustering forests (ERC) by (Moosmann et al., 2006)
+ *
+ * There also exists an Matlab Mex implementation for this class (CodebookRandomForestMex.cpp).
+ *
+ * @example TestCodebookRandomForest
+ * @example progCodebookRandomForest
+ *
+ * @author Erik Rodner (creator), Johannes Ruehle (updater)
+ * @date 02/15/2008, 05/05/2014
+ */
 class CodebookRandomForest : public Codebook
 {