Ver Fonte

LFSelection: read and write disabled per default

Alexander Freytag há 11 anos atrás
pai
commit
58fe636c93
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      features/localfeatures/GenericLFSelection.h

+ 2 - 2
features/localfeatures/GenericLFSelection.h

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