Jan Stefanic 5 роки тому
батько
коміт
a49f778333
2 змінених файлів з 13 додано та 1 видалено
  1. 3 1
      dataExplorer/CTRegistration.py
  2. 10 0
      dataExplorer/loadPatient.py

+ 3 - 1
dataExplorer/CTRegistration.py

@@ -95,7 +95,9 @@ class CTRegistrationLogic(slicer.ScriptedLoadableModule.ScriptedLoadableModuleLo
               #in windows, the variable is called HOMEPATH
            fhome=os.environ['HOMEDRIVE']+os.environ['HOMEPATH']
 
-
+  def setLocal(self,basePath):
+      self.importer.setLocal(basePath)
+      
   def getLocalRegistrationPath(self,net,project,patientId):
       path=os.path.join(net.GetLocalCacheDirectory(),project)
       path=os.path.join(path,"%40files")

+ 10 - 0
dataExplorer/loadPatient.py

@@ -15,6 +15,8 @@ class loadPatient(slicer.ScriptedLoadableModule.ScriptedLoadableModule):
         slicer.ScriptedLoadableModule.ScriptedLoadableModule.__init__(self, parent)
         self.className="loadPatient"
         self.parent.title="loadPatient"
+        self.parent.categories = ["EMBRACE"]
+        self.parent.contributors = ["Andrej Studen (UL/FMF)"] 
 
 class loadPatientLogic(slicer.ScriptedLoadableModule.ScriptedLoadableModuleLogic):
     def __init__(self,parent):
@@ -24,6 +26,10 @@ class loadPatientLogic(slicer.ScriptedLoadableModule.ScriptedLoadableModuleLogic
        #self.volumePlugin=slicer.modules.dicomPlugins['DICOMScalarVolumePlugin']()
        self.dicomLoader=loadDicom.loadDicomLogic(self)
        self.dicomImporter=importDicom.importDicomLogic(self)
+       self.dicomImporter.local=self.local
+       self.dicomImporter.basePath=self.basePath
+       self.dicomLoader.local=self.local
+       self.dicomLoader.basePath=self.basePath
        self.project="EMBRACE/Studija"
        self.imagingDataset="ImagingVisitsManaged"
        self.idDataset="PopisneStevilke"
@@ -39,6 +45,10 @@ class loadPatientLogic(slicer.ScriptedLoadableModule.ScriptedLoadableModuleLogic
     def setURIHandler(self, net):
         self.sNet=net
 
+    def setLocal(self,basePath)
+       self.dicomImporter.setLocal(basePath)
+       self.dicomLoader.setLocal(basePath)
+       
     def getOICode(self, label):
         filter=[]
         filterID={"variable":"EMBRACE_ID",