dataExplorer.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. import os
  2. import unittest
  3. import vtk, qt, ctk, slicer
  4. from slicer.ScriptedLoadableModule import *
  5. import logging
  6. import slicerNetwork
  7. import json
  8. import loadPatient
  9. #
  10. # dataExplorer
  11. #
  12. class dataExplorer(ScriptedLoadableModule):
  13. """Uses ScriptedLoadableModule base class, available at:
  14. https://github.com/Slicer/Slicer/blob/master/Base/Python/slicer/ScriptedLoadableModule.py
  15. """
  16. def __init__(self, parent):
  17. ScriptedLoadableModule.__init__(self, parent)
  18. self.parent.title = "dataExplorer" # TODO make this more human readable by adding spaces
  19. self.parent.categories = ["Examples"]
  20. self.parent.dependencies = []
  21. self.parent.contributors = ["Andrej Studen (University of Ljubljana)"] # replace with "Firstname Lastname (Organization)"
  22. self.parent.helpText = """
  23. This is an example of scripted loadable module bundled in an extension.
  24. It performs a simple thresholding on the input volume and optionally captures a screenshot.
  25. """
  26. self.parent.helpText += self.getDefaultModuleDocumentationLink()
  27. self.parent.acknowledgementText = """
  28. This extension developed within Medical Physics research programe of ARRS
  29. """ # replace with organization, grant and thanks.
  30. #
  31. # dataExplorerWidget
  32. #
  33. class dataExplorerWidget(ScriptedLoadableModuleWidget):
  34. """Uses ScriptedLoadableModuleWidget base class, available at:
  35. https://github.com/Slicer/Slicer/blob/master/Base/Python/slicer/ScriptedLoadableModule.py
  36. """
  37. def setup(self):
  38. ScriptedLoadableModuleWidget.setup(self)
  39. self.loadPatientLogic=loadPatient.loadPatientLogic(self)
  40. # Instantiate and connect widgets ...
  41. #
  42. # Parameters Area
  43. #
  44. basePath='D:\\Sw\\src\\EMBRACE'
  45. netConfig=os.path.join(basePath,'onko-nix.json')
  46. self.sNet=slicerNetwork.labkeyURIHandler()
  47. self.sNet.parseConfig(netConfig)
  48. self.sNet.initRemote()
  49. self.loadPatientLogic.setURIHandler(self.sNet)
  50. self.project="EMBRACE/Studija"
  51. self.dataset="ImagingVisitsManaged"
  52. datasetCollapsibleButton = ctk.ctkCollapsibleButton()
  53. datasetCollapsibleButton.text = "Dataset"
  54. self.layout.addWidget(datasetCollapsibleButton)
  55. # Layout within the dummy collapsible button
  56. datasetFormLayout = qt.QFormLayout(datasetCollapsibleButton)
  57. self.datasetButton=qt.QPushButton("Load")
  58. self.datasetButton.connect('clicked(bool)',self.onDatasetLoadButtonClicked)
  59. datasetFormLayout.addRow("Data:",self.datasetButton)
  60. self.patientId=qt.QLineEdit("LJU004")
  61. datasetFormLayout.addRow("Patient ID:",self.patientId)
  62. loadCTButton=qt.QPushButton("CT")
  63. loadCTButton.clicked.connect(self.onLoadCTButtonClicked)
  64. datasetFormLayout.addRow("Load:",loadCTButton)
  65. loadCTRSButton=qt.QPushButton("CT-RS")
  66. loadCTRSButton.clicked.connect(self.onLoadCTRSButtonClicked)
  67. datasetFormLayout.addRow("Load:",loadCTRSButton)
  68. loadDMRButton=qt.QPushButton("DMR")
  69. loadDMRButton.clicked.connect(self.onLoadDMRButtonClicked)
  70. datasetFormLayout.addRow("Load:",loadDMRButton)
  71. dataCollapsibleButton = ctk.ctkCollapsibleButton()
  72. dataCollapsibleButton.text = "Data"
  73. self.layout.addWidget(dataCollapsibleButton)
  74. # Layout within the dummy collapsible button
  75. dataFormLayout = qt.QVBoxLayout(dataCollapsibleButton)
  76. self.data=qt.QTableWidget(3,3)
  77. dataFormLayout.addWidget(self.data)
  78. patientsCollapsibleButton = ctk.ctkCollapsibleButton()
  79. patientsCollapsibleButton.text = "Patients"
  80. self.layout.addWidget(patientsCollapsibleButton)
  81. # Layout within the dummy collapsible button
  82. self.patientsFormLayout = qt.QVBoxLayout(patientsCollapsibleButton)
  83. self.signalMapper=qt.QSignalMapper()
  84. self.signalMapper.connect(self.signalMapper, qt.SIGNAL("mapped(const QString &)"), self.onPatientButtonClicked)
  85. def cleanup(self):
  86. pass
  87. def onDatasetLoadButtonClicked(self):
  88. ds=self.sNet.loadDataset(self.project,self.dataset)
  89. #loaded a JSON object -> convert to suitable display
  90. columns=ds['columnModel']
  91. self.data.setColumnCount(len(columns))
  92. self.data.setRowCount(len(ds['rows']))
  93. columnNames=[f['header'] for f in columns]
  94. self.data.setHorizontalHeaderLabels(columnNames)
  95. columnID=[f['dataIndex'] for f in columns]
  96. insertRowID=0
  97. for row in ds['rows']:
  98. insertColumnID=0
  99. for c in columnID:
  100. item=qt.QTableWidgetItem(str(row[c]))
  101. self.data.setItem(insertRowID,insertColumnID,item)
  102. insertColumnID+=1
  103. insertRowID+=1
  104. #clear patient list
  105. while self.patientsFormLayout.count():
  106. child=self.patientsFormLayout.takeAt(0)
  107. if child.widget():
  108. self.signalMapper.removeMapping(child.widget())
  109. child.widget().deleteLater()
  110. #populate patient list
  111. patientList=[f['EMBRACE_ID'] for f in ds['rows']]
  112. #remove duplicates
  113. patientSet=set(patientList)
  114. for p in patientSet:
  115. patientButton=qt.QPushButton(p)
  116. patientButton.connect(patientButton, qt.SIGNAL("clicked()"),
  117. self.signalMapper, qt.SLOT("map()"))
  118. self.patientsFormLayout.addWidget(patientButton)
  119. self.signalMapper.setMapping(patientButton,p)
  120. def onPatientButtonClicked(self, label):
  121. print "onPatientButtonClicked() for {}".format(label)
  122. self.loadPatientLogic.load(label)
  123. def onLoadCTButtonClicked(self):
  124. self.CT=self.loadPatientLogic.loadCT(self.patientId.text)
  125. def onLoadCTRSButtonClicked(self):
  126. self.CTRS=self.loadPatientLogic.loadCTRS(self.patientId.text)
  127. def onLoadDMRButtonClicked(self):
  128. self.DMR=self.loadPatientLogic.loadDMR(self.patientId.text)
  129. #
  130. # dataExplorerLogic
  131. #
  132. class dataExplorerLogic(ScriptedLoadableModuleLogic):
  133. """This class should implement all the actual
  134. computation done by your module. The interface
  135. should be such that other python code can import
  136. this class and make use of the functionality without
  137. requiring an instance of the Widget.
  138. Uses ScriptedLoadableModuleLogic base class, available at:
  139. https://github.com/Slicer/Slicer/blob/master/Base/Python/slicer/ScriptedLoadableModule.py
  140. """
  141. def hasImageData(self,volumeNode):
  142. """This is an example logic method that
  143. returns true if the passed in volume
  144. node has valid image data
  145. """
  146. if not volumeNode:
  147. logging.debug('hasImageData failed: no volume node')
  148. return False
  149. if volumeNode.GetImageData() is None:
  150. logging.debug('hasImageData failed: no image data in volume node')
  151. return False
  152. return True
  153. def isValidInputOutputData(self, inputVolumeNode, outputVolumeNode):
  154. """Validates if the output is not the same as input
  155. """
  156. if not inputVolumeNode:
  157. logging.debug('isValidInputOutputData failed: no input volume node defined')
  158. return False
  159. if not outputVolumeNode:
  160. logging.debug('isValidInputOutputData failed: no output volume node defined')
  161. return False
  162. if inputVolumeNode.GetID()==outputVolumeNode.GetID():
  163. logging.debug('isValidInputOutputData failed: input and output volume is the same. Create a new volume for output to avoid this error.')
  164. return False
  165. return True
  166. def takeScreenshot(self,name,description,type=-1):
  167. # show the message even if not taking a screen shot
  168. slicer.util.delayDisplay('Take screenshot: '+description+'.\nResult is available in the Annotations module.', 3000)
  169. lm = slicer.app.layoutManager()
  170. # switch on the type to get the requested window
  171. widget = 0
  172. if type == slicer.qMRMLScreenShotDialog.FullLayout:
  173. # full layout
  174. widget = lm.viewport()
  175. elif type == slicer.qMRMLScreenShotDialog.ThreeD:
  176. # just the 3D window
  177. widget = lm.threeDWidget(0).threeDView()
  178. elif type == slicer.qMRMLScreenShotDialog.Red:
  179. # red slice window
  180. widget = lm.sliceWidget("Red")
  181. elif type == slicer.qMRMLScreenShotDialog.Yellow:
  182. # yellow slice window
  183. widget = lm.sliceWidget("Yellow")
  184. elif type == slicer.qMRMLScreenShotDialog.Green:
  185. # green slice window
  186. widget = lm.sliceWidget("Green")
  187. else:
  188. # default to using the full window
  189. widget = slicer.util.mainWindow()
  190. # reset the type so that the node is set correctly
  191. type = slicer.qMRMLScreenShotDialog.FullLayout
  192. # grab and convert to vtk image data
  193. qimage = ctk.ctkWidgetsUtils.grabWidget(widget)
  194. imageData = vtk.vtkImageData()
  195. slicer.qMRMLUtils().qImageToVtkImageData(qimage,imageData)
  196. annotationLogic = slicer.modules.annotations.logic()
  197. annotationLogic.CreateSnapShot(name, description, type, 1, imageData)
  198. def run(self, inputVolume, outputVolume, imageThreshold, enableScreenshots=0):
  199. """
  200. Run the actual algorithm
  201. """
  202. if not self.isValidInputOutputData(inputVolume, outputVolume):
  203. slicer.util.errorDisplay('Input volume is the same as output volume. Choose a different output volume.')
  204. return False
  205. logging.info('Processing started')
  206. # Compute the thresholded output volume using the Threshold Scalar Volume CLI module
  207. cliParams = {'InputVolume': inputVolume.GetID(), 'OutputVolume': outputVolume.GetID(), 'ThresholdValue' : imageThreshold, 'ThresholdType' : 'Above'}
  208. cliNode = slicer.cli.run(slicer.modules.thresholdscalarvolume, None, cliParams, wait_for_completion=True)
  209. # Capture screenshot
  210. if enableScreenshots:
  211. self.takeScreenshot('dataExplorerTest-Start','MyScreenshot',-1)
  212. logging.info('Processing completed')
  213. return True
  214. class dataExplorerTest(ScriptedLoadableModuleTest):
  215. """
  216. This is the test case for your scripted module.
  217. Uses ScriptedLoadableModuleTest base class, available at:
  218. https://github.com/Slicer/Slicer/blob/master/Base/Python/slicer/ScriptedLoadableModule.py
  219. """
  220. def setUp(self):
  221. """ Do whatever is needed to reset the state - typically a scene clear will be enough.
  222. """
  223. slicer.mrmlScene.Clear(0)
  224. def runTest(self):
  225. """Run as few or as many tests as needed here.
  226. """
  227. self.setUp()
  228. self.test_dataExplorer1()
  229. def test_dataExplorer1(self):
  230. """ Ideally you should have several levels of tests. At the lowest level
  231. tests should exercise the functionality of the logic with different inputs
  232. (both valid and invalid). At higher levels your tests should emulate the
  233. way the user would interact with your code and confirm that it still works
  234. the way you intended.
  235. One of the most important features of the tests is that it should alert other
  236. developers when their changes will have an impact on the behavior of your
  237. module. For example, if a developer removes a feature that you depend on,
  238. your test should break so they know that the feature is needed.
  239. """
  240. self.delayDisplay("Starting the test")
  241. #
  242. # first, get some data
  243. #
  244. import urllib
  245. downloads = (
  246. ('http://slicer.kitware.com/midas3/download?items=5767', 'FA.nrrd', slicer.util.loadVolume),
  247. )
  248. for url,name,loader in downloads:
  249. filePath = slicer.app.temporaryPath + '/' + name
  250. if not os.path.exists(filePath) or os.stat(filePath).st_size == 0:
  251. logging.info('Requesting download %s from %s...\n' % (name, url))
  252. urllib.urlretrieve(url, filePath)
  253. if loader:
  254. logging.info('Loading %s...' % (name,))
  255. loader(filePath)
  256. self.delayDisplay('Finished with download and loading')
  257. volumeNode = slicer.util.getNode(pattern="FA")
  258. logic = dataExplorerLogic()
  259. self.assertIsNotNone( logic.hasImageData(volumeNode) )
  260. self.delayDisplay('Test passed!')