-
Notifications
You must be signed in to change notification settings - Fork 0
/
domains2index.py
29 lines (23 loc) · 914 Bytes
/
domains2index.py
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
27
28
29
import numpy as np
import os
import sys
import nrrd
if (len(sys.argv) < 3):
print 'Error: missing arguments!'
print 'e.g. python domain2index.py indexfile.nrrd domainfile1.nrrd domainfileN.nrrd ...'
else:
print 'Adding to index', 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)
indfile = str(sys.argv[1])
if os.path.exists(indfile):
domain, options = nrrd.read(indfile)
else:
domain = np.zeros(readdata.shape,np.uint8)
domain[readdata==i]=np.uint8(i)
nrrd.write(indfile, domain)
print 'Done.'