Browse Source

LFSelection: read and write disabled per default

Alexander Freytag 11 years ago
parent
commit
58fe636c93
1 changed files with 2 additions and 2 deletions
  1. 2 2
      features/localfeatures/GenericLFSelection.h

+ 2 - 2
features/localfeatures/GenericLFSelection.h

@@ -125,10 +125,10 @@ class GenericLFSelection
 
 
         // read features?
         // read features?
         bool readfeat;
         bool readfeat;
-        readfeat = conf->gB ( section, "localfeature_cache_read", true );
+        readfeat = conf->gB ( section, "localfeature_cache_read", false );
         // write features?
         // write features?
         bool writefeat;  
         bool writefeat;  
-        writefeat = conf->gB ( section, "localfeature_cache_write", true );   
+        writefeat = conf->gB ( section, "localfeature_cache_write", false );   
 
 
         LocalFeatureRepresentation *writeFeats = NULL;
         LocalFeatureRepresentation *writeFeats = NULL;
         LocalFeatureRepresentation *readFeats = NULL;
         LocalFeatureRepresentation *readFeats = NULL;