|
@@ -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",
|