-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SurfaceTransform class #203
Merged
Merged
Changes from 23 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
17477ea
Skeleton code to save/load transforms using X5 format.
feilong 00af8d9
Support I/O of npz format.
feilong 2ca8630
Normalize the transform so that the sum or the value of each element …
feilong 3dbcf18
NF: add surface index transforms
Shotgunosine ed81087
NF: add surface resampling and surfacecoordinate transform
Shotgunosine cbafa5d
NF: surface resampler can load from surfaces
Shotgunosine 4ba0bdc
Merge branch 'master' into surface
oesteban 7be1b57
fix flake8
Shotgunosine b20a4bc
add .DS_Store
Shotgunosine 46aca57
DOC: add documentation for suface coordinate transform
Shotgunosine 6daaef1
TEST: expand test coverage
Shotgunosine 2496647
NF: Validate inputs to SurfaceResampler
Shotgunosine f7784bc
ADD: project-unproject functionality
Shotgunosine 092e745
Merge branch 'nipy:master' into surface
Shotgunosine d5705fb
clean surface test
Shotgunosine 043816b
Merge branch 'nipy:master' into surface
Shotgunosine fc06289
FIX: don't drop 3dNwarpApply from the dockerfile
Shotgunosine 4e95fa3
Update Dockerfile
Shotgunosine 884a81e
RF: don't decompose coordinates before transforming
Shotgunosine 288fc7c
TEST: split out project unproject test
Shotgunosine c3587c1
TEST: cover some more error messages
Shotgunosine 5e8b492
PL: lint surface
Shotgunosine e6a63d9
RF: reorganize x5 files
Shotgunosine f9cabec
Update nitransforms/surface.py
Shotgunosine a4d6df2
Update nitransforms/tests/test_surface.py
Shotgunosine 79b7b50
Update nitransforms/tests/test_surface.py
Shotgunosine 57222fd
fix_rebase
Shotgunosine 2e7c7eb
TEST: drop unused path
Shotgunosine ef29204
Merge branch 'master' into surface
Shotgunosine 454e289
TEST: Fix surface coordinate transfrom tests
Shotgunosine 2082f76
Merge branch 'surface' of https://github.com/feilong/nitransforms int…
Shotgunosine bf80e71
PL: fix style regressions
Shotgunosine f34d609
PL: fix long lines
Shotgunosine f470a59
Apply suggestions from code review
oesteban f69faaf
doc: add new module to APIdoc
oesteban File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,3 +82,5 @@ local_settings.py | |
|
||
*.swp | ||
.vscode/ | ||
|
||
.DS_Store |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me get this in in a separate PR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me get this in in a separate PR