-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex2domain.py
More file actions
26 lines (23 loc) · 916 Bytes
/
Index2domain.py
File metadata and controls
26 lines (23 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import numpy as np
import os
import sys
import nrrd
if (len(sys.argv) < 3):
print 'Error: missing arguments!'
print 'e.g. python Index2domain.py DomainPrefix indexfile1.nrrd indexfileN.nrrd ...'
else:
print 'Adding to domains', str(sys.argv[1]), '....'
for x in range(2,(len(sys.argv))):
print 'adding data from file', sys.argv[x]
readdata, options = nrrd.read(str(sys.argv[x]))
for i in np.unique(readdata[readdata>0]):
if np.uint8(i) in readdata:
print 'appending index', str(i)
domfile = str(sys.argv[1]) + str(i).zfill(4) + '.nrrd'
if os.path.exists(domfile):
domain, options = nrrd.read(domfile)
else:
domain = np.zeros(readdata.shape,np.uint8)
domain[readdata==i]=np.uint8(55)
nrrd.write(domfile, domain)
print 'Done.'