|
@@ -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
|
|
|
{
|
|
|
|