Skip to content

Commit 1663a32

Browse files
committed
wip(transforms): writing up some linear transform readers
1 parent 4cfe77f commit 1663a32

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

nibabel/transform/linear.py

+16-11
Original file line numberDiff line numberDiff line change
@@ -215,22 +215,27 @@ def to_filename(self, filename, fmt='X5', moving=None):
215215
return super(Affine, self).to_filename(filename, fmt=fmt)
216216

217217

218-
def load(filename, reference=None):
218+
def load(filename, fmt='X5', reference=None):
219219
''' Load a linear transform '''
220-
with open(filename) as itkfile:
221-
itkxfm = itkfile.read().splitlines()
222220

223-
parameters = np.fromstring(itkxfm[3].split(':')[-1].strip(), dtype=float, sep=' ')
224-
offset = np.fromstring(itkxfm[4].split(':')[-1].strip(), dtype=float, sep=' ')
225-
if len(parameters) == 12:
226-
matrix = from_matvec(parameters[:9].reshape((3, 3)), parameters[9:])
227-
c_neg = from_matvec(np.eye(3), offset * -1.0)
228-
c_pos = from_matvec(np.eye(3), offset)
229-
matrix = LPS.dot(c_pos.dot(matrix.dot(c_neg.dot(LPS))))
221+
if fmt.lower() in ['itk', 'ants', 'elastix', 'nifty']:
222+
with open(filename) as itkfile:
223+
itkxfm = itkfile.read().splitlines()
224+
225+
parameters = np.fromstring(itkxfm[3].split(':')[-1].strip(), dtype=float, sep=' ')
226+
offset = np.fromstring(itkxfm[4].split(':')[-1].strip(), dtype=float, sep=' ')
227+
if len(parameters) == 12:
228+
matrix = from_matvec(parameters[:9].reshape((3, 3)), parameters[9:])
229+
c_neg = from_matvec(np.eye(3), offset * -1.0)
230+
c_pos = from_matvec(np.eye(3), offset)
231+
matrix = LPS.dot(c_pos.dot(matrix.dot(c_neg.dot(LPS))))
232+
233+
# if fmt.lower() == 'afni':
234+
# parameters = LPS.dot(self.matrix.dot(LPS))
235+
# parameters = parameters[:3, :].reshape(-1).tolist()
230236

231237
if reference and isinstance(reference, str):
232238
reference = loadimg(reference)
233-
234239
return Affine(matrix, reference)
235240

236241

0 commit comments

Comments
 (0)