Skip to content

Commit

Permalink
dummy commit (no actual changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfrankkirk committed Jan 5, 2022
1 parent 211f436 commit 015bcd8
Show file tree
Hide file tree
Showing 24 changed files with 2 additions and 2 deletions.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified MANIFEST.in
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified docs/Makefile
100644 → 100755
Empty file.
Empty file modified docs/conf.py
100644 → 100755
Empty file.
Empty file modified docs/demo.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified docs/demo.pptx
100644 → 100755
Empty file.
Empty file modified docs/index.rst
100644 → 100755
Empty file.
Empty file modified docs/make.bat
100644 → 100755
Empty file.
Empty file modified docs/modules.rst
100644 → 100755
Empty file.
Empty file modified docs/quickstart.md
100644 → 100755
Empty file.
Empty file modified docs/regtricks.rst
100644 → 100755
Empty file.
Empty file modified docs/regtricks.transforms.rst
100644 → 100755
Empty file.
Empty file modified regtricks/__init__.py
100644 → 100755
Empty file.
Empty file modified regtricks/multiplication.py
100644 → 100755
Empty file.
Empty file modified regtricks/transforms/__init__.py
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion regtricks/transforms/linear.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def resolve(self, src, ref, *unused):
# Array of all voxel indices in the reference grid
# Map them into world coordinates, apply the transform
# and then into source voxel coordinates for the interpolation
ref2src_vox = (src.world2vox @ self.ref2src @ ref.vox2world)
ref2src_vox = ((src.world2vox @ self.ref2src) @ ref.vox2world)
ijk = apply.aff_trans(ref2src_vox, self.cache).T
scale = 1
return (ijk, scale)
Expand Down
Empty file modified regtricks/transforms/nonlinear.py
100644 → 100755
Empty file.
Empty file modified regtricks/wrappers.py
100644 → 100755
Empty file.
Empty file modified regtricks/x5_interface.py
100644 → 100755
Empty file.
Empty file modified requirements.txt
100644 → 100755
Empty file.
Empty file modified setup.py
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion test.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,4 @@ def test_mcasl2brain():


if __name__ == "__main__":
test_aslmc2MNI()
test_brain2MNI()

0 comments on commit 015bcd8

Please sign in to comment.