Bjoern Froehlich 12 years ago
parent
commit
a55906e746
1 changed files with 3 additions and 2 deletions
  1. 3 2
      GenericRegionSegmentationMethodSelection.h

+ 3 - 2
GenericRegionSegmentationMethodSelection.h

@@ -12,6 +12,7 @@
 #include <segmentation/RSMeanShift.h>
 #include <segmentation/RSMeanShift.h>
 #include <segmentation/RSSlic.h>
 #include <segmentation/RSSlic.h>
 #include <segmentation/RSGraphBased.h>
 #include <segmentation/RSGraphBased.h>
+#include <segmentation/RSCache.h>
 
 
 namespace OBJREC
 namespace OBJREC
 {
 {
@@ -24,7 +25,7 @@ class GenericRegionSegmentationMethodSelection
     */
     */
     
     
     static RegionSegmentationMethod*
     static RegionSegmentationMethod*
-    selectRegionSegmentationMethod(const Config* conf, const std::string& methode)
+    selectRegionSegmentationMethod(const NICE::Config* conf, const std::string& methode)
     {
     {
       RegionSegmentationMethod* segmentationAlgo = NULL;
       RegionSegmentationMethod* segmentationAlgo = NULL;
 
 
@@ -47,7 +48,7 @@ class GenericRegionSegmentationMethodSelection
 
 
       if ( segmentationAlgo == NULL )
       if ( segmentationAlgo == NULL )
       {
       {
-        fthrow(Exception, "Region Segmentation Method not found: " << methode );
+        fthrow(NICE::Exception, "Region Segmentation Method not found: " << methode );
         return segmentationAlgo;
         return segmentationAlgo;
       }
       }