dataExplorer.py 12 KB

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