Bjoern Froehlich 12 年之前
父節點
當前提交
a55906e746
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      GenericRegionSegmentationMethodSelection.h

+ 3 - 2
GenericRegionSegmentationMethodSelection.h

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