convertToNRRD.py 11 KB

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