|
@@ -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):
|