Browse Source

tiny change in initialization of SemSegContextTree3D

Sven Sickert 10 years ago
parent
commit
50a2fd5268
1 changed files with 1 additions and 1 deletions
  1. 1 1
      semseg/SemSegContextTree3D.cpp

+ 1 - 1
semseg/SemSegContextTree3D.cpp

@@ -127,7 +127,7 @@ SemSegContextTree3D::SemSegContextTree3D (
   this->useFeat4 = conf->gB ( section, "use_feat_4", false);    // pixel pair context features
   this->useFeat5 = conf->gB ( section, "use_feat_5", false);    // ray features
 
-  string segmentationtype = conf->gS ( section, "segmentation_type", "slic" );
+  string segmentationtype = conf->gS ( section, "segmentation_type", "none" );
   if ( segmentationtype == "meanshift" )
     this->segmentation = new RSMeanShift ( conf );
   else if ( segmentationtype == "felzenszwalb" )