convertToNRRD.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. import os
  2. import sys
  3. import json
  4. import pathlib
  5. import slicer
  6. import subprocess
  7. import shutil
  8. #for all rows in xconfig[queryName] import dicom and convert to nrrd
  9. def main(configFile):
  10. print('Running with {}'.format(configFile))
  11. with open(configFile) as f:
  12. xconfig=json.load(f)
  13. fsetup=os.path.join(os.path.expanduser('~'),'.labkey','setup.json')
  14. with open(fsetup) as f:
  15. setup=json.load(f)
  16. sys.path.append(setup['paths']['nixWrapper'])
  17. import nixWrapper
  18. nixWrapper.loadLibrary('labkeyInterface')
  19. import labkeyInterface
  20. import labkeyDatabaseBrowser
  21. import labkeyFileBrowser
  22. nixWrapper.loadLibrary('orthancInterface')
  23. import orthancInterface
  24. import orthancDatabaseBrowser
  25. import orthancFileBrowser
  26. #one should be smart to figure this out if pwd is not the same as the directory of the script
  27. pwd=os.path.dirname(os.path.abspath(__file__))
  28. pwdUp=os.path.dirname(pwd)
  29. pythonScripts=os.path.join(pwdUp,'pythonScripts')
  30. sys.path.append(pythonScripts)
  31. import config
  32. import getData
  33. print('Config loaded')
  34. net=labkeyInterface.labkeyInterface()
  35. fnet=os.path.join(os.path.expanduser('~'),'.labkey',xconfig['network'])
  36. net.init(fnet)
  37. net.getCSRF()
  38. fb=labkeyFileBrowser.labkeyFileBrowser(net)
  39. db=labkeyDatabaseBrowser.labkeyDB(net)
  40. onet=orthancInterface.orthancInterface()
  41. onet.init(fnet)
  42. ofb=orthancFileBrowser.orthancFileBrowser(onet)
  43. odb=orthancDatabaseBrowser.orthancDB(onet)
  44. qFilter=config.getFilter(xconfig)
  45. ds=db.selectRows(xconfig['project'],xconfig['schemaName'],xconfig['queryName'],qFilter)
  46. try:
  47. rows=ds['rows']
  48. except KeyError:
  49. print('No rows returned')
  50. return
  51. for r in rows:
  52. #check row sanity
  53. print("Loading {}/{}".format(config.getPatientId(r,xconfig),config.getVisitId(r,xconfig)))
  54. rPath=fb.formatPathURL(xconfig['project'],config.getOutputDir(r,xconfig))
  55. rPath+='/'+config.getNodeName(r,xconfig,'CT')+'.nrrd'
  56. entryDone=fb.entryExists(rPath)
  57. if entryDone:
  58. try:
  59. if not xconfig['recalculate']:
  60. print('Entry done')
  61. continue
  62. except KeyError:
  63. print('Entry done')
  64. continue
  65. print('Forced recalculation')
  66. code=config.getCode(r,xconfig)
  67. print('{} available:{}'.format(config.getNodeName(r,xconfig,'CT'),fb.entryExists(rPath)))
  68. #loadPatient into slicer
  69. patient=loadPatient(ofb,r,xconfig)
  70. if not patient:
  71. print(f'{code} failed to load from Orthanc')
  72. continue
  73. #convert to nodes
  74. addCT(r,patient,xconfig)
  75. addFrames(r,patient,xconfig)
  76. addDummyInputFunction(r,patient,xconfig)
  77. nodes=slicer.mrmlScene.GetNodesByClass('vtkMRMLScalarVolumeNode')
  78. print('Nodes')
  79. for node in nodes:
  80. print('\t{}'.format(node.GetName()))
  81. storeNode(fb,r,xconfig,node)
  82. nodes=slicer.mrmlScene.GetNodesByClass('vtkMRMLDoubleArrayNode')
  83. print('Nodes (double array)')
  84. for node in nodes:
  85. print('\t{}'.format(node.GetName()))
  86. storeNode(fb,r,xconfig,node)
  87. nodes=slicer.mrmlScene.GetNodesByClass('vtkMRMLTableNode')
  88. print('Nodes (table)')
  89. for node in nodes:
  90. print('\t{}'.format(node.GetName()))
  91. storeNode(fb,r,xconfig,node)
  92. clearNodes(r,xconfig)
  93. #addCT and addFrames fill r['ct'] and r['spect']
  94. db.modifyRows('update',xconfig['project'],xconfig['schemaName'],xconfig['queryName'],[r])
  95. getData.updateStatus(db,r,setup,'convertToNRRD')
  96. def clearNodes(row,xconfig):
  97. nodes=slicer.mrmlScene.GetNodesByClass('vtkMRMLScalarVolumeNode')
  98. nodes1=slicer.mrmlScene.GetNodesByClass('vtkMRMLDoubleArrayNode')
  99. nodes2=slicer.mrmlScene.GetNodesByClass('vtkMRMLTableNode')
  100. for n in nodes1:
  101. nodes.AddItem(n)
  102. for n in nodes2:
  103. nodes.AddItem(n)
  104. res=[slicer.mrmlScene.RemoveNode(f) for f in nodes]
  105. def loadPatient(ofb,r,xconfig):
  106. sys.path.append('../pythonScripts')
  107. import parseDicom
  108. import vtkInterface
  109. pd=parseDicom.parseDicom()
  110. masterPath=downloadAndUnzip(ofb,r,"nmMaster",xconfig)
  111. if not masterPath:
  112. return None
  113. pd.readMasterDirectory(masterPath,False)
  114. print('Time [{} .. {}]'.format(pd.frame_start,pd.frame_stop))
  115. clearUnzipDir(r,xconfig)
  116. nmPath=downloadAndUnzip(ofb,r,"nmCorrData",xconfig)
  117. if not nmPath:
  118. return None
  119. frame_data, frame_time, frame_duration, frame_origin, \
  120. frame_pixel_size, frame_orientation=\
  121. pd.readNMDirectory(nmPath,False)
  122. print('Frame time {}'.format(frame_time))
  123. clearUnzipDir(r,xconfig)
  124. ctPath=downloadAndUnzip(ofb,r,"ct",xconfig)
  125. if not ctPath:
  126. return None
  127. ct_data,ct_origin,ct_pixel_size, \
  128. ct_orientation=pd.readCTDirectory(ctPath,False)
  129. print('CT pixel {}'.format(ct_pixel_size))
  130. clearUnzipDir(r,xconfig)
  131. ct_orientation=vtkInterface.completeOrientation(ct_orientation)
  132. frame_orientation=vtkInterface.completeOrientation(frame_orientation)
  133. ct={'data':ct_data,'origin':ct_origin,'pixel_size':ct_pixel_size,
  134. 'orientation':ct_orientation}
  135. nm={'data':frame_data,'time':frame_time,'duration':frame_duration,
  136. 'origin':frame_origin,'pixel_size':frame_pixel_size,
  137. 'orientation':frame_orientation}
  138. return {'CT':ct,'NM':nm}
  139. print('Done')
  140. def clearUnzipDir(r,xconfig):
  141. import config
  142. zipDir=config.getLocalDir(r,xconfig)
  143. try:
  144. os.mkdir(zipDir)
  145. except FileExistsError:
  146. shutil.rmtree(zipDir)
  147. return zipDir
  148. def downloadAndUnzip(ofb,r,code,xconfig):
  149. import config
  150. pathList=xconfig['tempDir'].split('/')
  151. pathList.insert(0,os.path.expanduser('~'))
  152. tempDir=os.path.join(*pathList)
  153. if not os.path.isdir(tempDir):
  154. print('Creating {}'.format(tempDir))
  155. os.makedirs(tempDir)
  156. orthancId=r[code+'OrthancId']
  157. if not orthancId:
  158. return None
  159. fileCode='{}_{}'.format(config.getCode(r,xconfig),code)
  160. zipFile=os.path.join(tempDir,fileCode+'.zip')
  161. ofb.getZip('series',orthancId,zipFile)
  162. zipDir=clearUnzipDir(r,xconfig)
  163. try:
  164. outTxt=subprocess.check_output(["unzip","-d",zipDir,"-xj",zipFile])
  165. except subprocess.CalledProcessError:
  166. print("unzip failed for {}".format(zipFile))
  167. return ""
  168. return zipDir
  169. def addCT(r,patient,xconfig):
  170. import config
  171. import vtkInterface
  172. ct=patient['CT']
  173. vtkData=vtkInterface.numpyToVTK(ct['data'],ct['data'].shape)
  174. nodeName=config.getNodeName(r,xconfig,'CT')
  175. addNode(nodeName,vtkData,ct['origin'],ct['pixel_size'],ct['orientation'],0)
  176. r['ct']=f'{nodeName}.nrrd'
  177. def addFrames(r,patient,xconfig):
  178. import vtkInterface
  179. import config
  180. #convert data from numpy.array to vtkImageData
  181. #use time point it
  182. nm=patient['NM']
  183. print("NFrames: {}".format(nm['data'].shape[3]))
  184. for it in range(0,nm['data'].shape[3]):
  185. frame_data=nm['data'][:,:,:,it];
  186. nodeName=config.getNodeName(r,xconfig,'NM',it)
  187. vtkData=vtkInterface.numpyToVTK(frame_data,frame_data.shape)
  188. addNode(nodeName,vtkData,nm['origin'],nm['pixel_size'],nm['orientation'],1)
  189. #last one will be kept
  190. r['spect']=f'{nodeName}.nrrd'
  191. def addNode(nodeName,v,origin,pixel_size,orientation,dataType):
  192. #origin,orientation in lps
  193. #dataType=0 is CT (to background)
  194. #dataType=1 is SPECT, view not adjusted, foreground,
  195. newNode=slicer.vtkMRMLScalarVolumeNode()
  196. newNode.SetName(nodeName)
  197. v.SetOrigin([0,0,0])
  198. v.SetSpacing([1,1,1])
  199. ijkToRAS = vtk.vtkMatrix4x4()
  200. #think how to do this with image orientation
  201. #orientation from lps to ras
  202. rasOrientation=[-orientation[i] if (i%3 < 2) else orientation[i]
  203. for i in range(0,len(orientation))]
  204. #origin from lps to ras
  205. rasOrigin=[-origin[i] if (i%3<2) else origin[i] for i in range(0,len(origin))]
  206. for i in range(0,3):
  207. for j in range(0,3):
  208. ijkToRAS.SetElement(i,j,pixel_size[i]*rasOrientation[3*j+i])
  209. ijkToRAS.SetElement(i,3,rasOrigin[i])
  210. newNode.SetIJKToRASMatrix(ijkToRAS)
  211. newNode.SetAndObserveImageData(v)
  212. slicer.mrmlScene.AddNode(newNode)
  213. def addDummyInputFunction(r,patient,xconfig):
  214. import config
  215. nm=patient['NM']
  216. n=nm['data'].shape[3]
  217. dnsNodeName=config.getNodeName(r,xconfig,'Dummy')
  218. dns = slicer.mrmlScene.GetNodesByClassByName('vtkMRMLDoubleArrayNode',dnsNodeName)
  219. if dns.GetNumberOfItems() == 0:
  220. try:
  221. dn = slicer.mrmlScene.AddNode(slicer.vtkMRMLDoubleArrayNode())
  222. except AttributeError:
  223. addDummyTable(dnsNodeName,n,nm)
  224. return
  225. else:
  226. dn = dns.GetItemAsObject(0)
  227. dn.SetSize(n)
  228. ft=nm['time']
  229. dt=nm['duration']
  230. for i in range(0,n):
  231. fx=ft[i]
  232. fy=dt[i]
  233. dn.SetValue(i, 0, fx)
  234. dn.SetValue(i, 1, fy)
  235. dn.SetValue(i, 2, 0)
  236. print('{} ({},{})'.format(i,fx,fy))
  237. def addDummyTable(dnsNodeName,n,nm):
  238. #add vtkMRMLTableNodes
  239. dns = slicer.mrmlScene.GetNodesByClassByName('vtkMRMLTableNode',dnsNodeName)
  240. if dns.GetNumberOfItems() == 0:
  241. dn = slicer.mrmlScene.AddNode(slicer.vtkMRMLTableNode())
  242. dn.SetName(dnsNodeName)
  243. else:
  244. dn = dns.GetItemAsObject(0)
  245. dn.RemoveAllColumns()
  246. ft=nm['time']
  247. dt=nm['duration']
  248. tCol=vtk.vtkDoubleArray()
  249. dCol=vtk.vtkDoubleArray()
  250. for i in range(n):
  251. tCol.InsertNextValue(ft[i])
  252. dCol.InsertNextValue(dt[i])
  253. tcol=dn.AddColumn(tCol)
  254. tcol.SetName('time')
  255. dcol=dn.AddColumn(dCol)
  256. dcol.SetName('duration')
  257. def storeNode(fb,row,xconfig,node):
  258. import config
  259. suffix=".nrrd"
  260. isTable=False
  261. if node.__class__.__name__=="vtkMRMLDoubleArrayNode":
  262. suffix=".mcsv"
  263. if node.__class__.__name__=="vtkMRMLTableNode":
  264. suffix=".mcsv"
  265. isTable=True
  266. if (node.__class__.__name__=="vtkMRMLTransformNode" or \
  267. node.__class__.__name__=="vtkMRMLGridTransformNode"):
  268. suffix=".h5"
  269. fileName=node.GetName()+suffix
  270. localPath=os.path.join(config.getLocalDir(row,xconfig),fileName)
  271. if isTable:
  272. storeTable(node,localPath)
  273. else:
  274. slicer.util.saveNode(node,localPath)
  275. print("Stored to: {}".format(localPath))
  276. labkeyPath=fb.buildPathURL(xconfig['project'],config.getPathList(row,xconfig))
  277. print ("Remote: {}".format(labkeyPath))
  278. #checks if exists
  279. remoteFile=labkeyPath+'/'+fileName
  280. fb.writeFileToFile(localPath,remoteFile)
  281. def storeTable(node,filename):
  282. #mimic old vtkMRMLDoubleArray format
  283. table=node.GetTable()
  284. ft=table.GetColumnByName('time')
  285. fd=table.GetColumnByName('duration')
  286. n=ft.GetNumberOfValues()
  287. print(f'Storing {n} values')
  288. with open(filename,'w') as f:
  289. f.write(f'# measurement file {filename}\n')
  290. f.write('# no labels\n')
  291. for i in range(n):
  292. _t=ft.GetTuple1(i)
  293. _d=fd.GetTuple1(i)
  294. print(f'{_t},{_d},0')
  295. f.write(f'{_t},{_d},0\n')
  296. def readPatient(fb,localDir,project,patientId):
  297. rDir=fb.formatPathURL(project,'/'.join([patientId]))
  298. lDir=os.path.join(localDir,patientId)
  299. if not os.path.isdir(lDir):
  300. os.makedirs(lDir)
  301. ok,files=fb.listRemoteDir(rDir)
  302. locFiles=[]
  303. for f in files:
  304. print(f)
  305. p=pathlib.Path(f)
  306. localFile=os.path.join(lDir,p.name)
  307. fb.readFileToFile(f,localFile)
  308. locFiles.append(localFile)
  309. print('Done')
  310. return locFiles
  311. if __name__=='__main__':
  312. main(sys.argv[1])
  313. quit()