Andrej Studen 5 роки тому
батько
коміт
a30cf714e0

+ 1 - 1
dataExplorer/CTRegistration.py

@@ -12,7 +12,7 @@ class CTRegistration(slicer.ScriptedLoadableModule.ScriptedLoadableModule):
         slicer.ScriptedLoadableModule.ScriptedLoadableModule.__init__(self, parent)
         self.className="CTRegistration"
         self.parent.title="CTRegistration"
-        self.parent.categories = ["Examples"]
+        self.parent.categories = ["EMBRACE"]
         self.parent.dependencies = []
         self.parent.contributors = ["Andrej Studen (University of Ljubljana)"] # replace with "Firstname Lastname (Organization)"
         self.parent.helpText = """

+ 1 - 1
dataExplorer/dataExplorer.py

@@ -19,7 +19,7 @@ class dataExplorer(ScriptedLoadableModule):
   def __init__(self, parent):
     ScriptedLoadableModule.__init__(self, parent)
     self.parent.title = "dataExplorer" # TODO make this more human readable by adding spaces
-    self.parent.categories = ["Examples"]
+    self.parent.categories = ["EMBRACE"]
     self.parent.dependencies = []
     self.parent.contributors = ["Andrej Studen (University of Ljubljana)"] # replace with "Firstname Lastname (Organization)"
     self.parent.helpText = """

+ 9 - 1
dataExplorer/importDicom.py

@@ -13,7 +13,15 @@ class importDicom(slicer.ScriptedLoadableModule.ScriptedLoadableModule):
         slicer.ScriptedLoadableModule.ScriptedLoadableModule.__init__(self, parent)
         self.className="loadPatient"
         self.parent.title="loadPatient"
-
+        self.parent.categories = ["LabKey"]
+        self.parent.dependencies = []
+        self.parent.contributors = ["Andrej Studen (UL/FMF)"] # replace with "Firstname Lastname (Organization)"
+        self.parent.helpText = """
+                utilities for parsing dicom entries
+                """
+        self.parent.acknowledgementText = """
+                Developed within the medical physics research programme of the Slovenian research agency.
+                """ # replace with organization, grant and thanks.
 #equivalent of loadable + labkey interface
 class dicomSeries():
     def __init__(self):