Explorar el Código

LFSelection: read and write disabled per default

Alexander Freytag hace 11 años
padre
commit
58fe636c93
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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;