Bjoern Froehlich 13 سال پیش
والد
کامیت
eea167d7a4
2فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 0 1
      progs/testSemanticSegmentation.cpp
  2. 3 1
      semseg/postsegmentation/RelativeLocationPrior.cpp

+ 0 - 1
progs/testSemanticSegmentation.cpp

@@ -19,7 +19,6 @@
 #include <objrec-froehlichexp/semseg/SemSegLocal.h>
 #include <objrec-froehlichexp/semseg/SemSegSTF.h>
 #include <objrec-froehlichexp/semseg/SemSegCsurka.h>
-#include <objrec-froehlichexp/semseg/SemSegCsurka2.h>
 #include <objrec-froehlichexp/semseg/SemSegRegionBased.h>
 #include <objrec-froehlichexp/semseg/SemSegContextTree.h>
 

+ 3 - 1
semseg/postsegmentation/RelativeLocationPrior.cpp

@@ -1,5 +1,7 @@
 #include "RelativeLocationPrior.h"
 
+#include "core/image/Filter.h"
+
 using namespace std;
 using namespace NICE;
 using namespace OBJREC;
@@ -121,7 +123,7 @@ void RelativeLocationPrior::finishPriorsMaps(ClassNames &cn)
 
 			NICE::FloatImage out;
 			//FourierLibrary::gaussFilterD(tmp, out, sigma);
-			filterGaussSigmaApproximate<float,float,float>( tmp, &out, sigma );
+			NICE::filterGaussSigmaApproximate<float,float,float>( tmp, sigma, &out);
 					
 			for(int x = 0; x < mapsize; x++)
 			{