diff --git a/Vhrs.py b/Vhrs.py
index 7edd0f452adcc3d66feff45dd808cb5c8eb7ea3b..c76252a9615d873384b50857c0846a8cc6692755 100644
--- a/Vhrs.py
+++ b/Vhrs.py
@@ -20,7 +20,6 @@
 import os, sys
 import glob
 import Outils
-import psutil
 import otbApplication as otb
 
 from multiprocessing import Process
@@ -52,10 +51,6 @@ class Vhrs():
 
 		self.out_sfs 	   = "{0}_sfs.TIF".format(self._image[:-4])
 		self.out_haralick  = "{0}_haralick.TIF".format(self._image[:-4])
-
-		ram_dispo = round((psutil.virtual_memory().available/pow(2,20))/2)
-
-		self.logger.debug("ram_dispo : {0}".format(ram_dispo))
 		
 		p_sfs = Process(target=self.sfs_texture_extraction)
 		p_sfs.start()