Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Support for BrainVoyager VTC, MSK, VMR and NR-VMP files#216

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
thomastweets wants to merge9 commits intonipy:master
base:master
Choose a base branch
Loading
fromthomastweets:master
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
9 commits
Select commitHold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletionsnibabel/__init__.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -51,6 +51,8 @@
from .nifti2importNifti2Header,Nifti2Image,Nifti2Pair
from .minc1importMinc1Image
from .minc2importMinc2Image
from .brainvoyagerimport (BvMskHeader,BvMskImage,BvVmpHeader,BvVmpImage,
BvVtcHeader,BvVtcImage,BvVmrHeader,BvVmrImage)
# Deprecated backwards compatiblity for MINC1
from .deprecatedimportModuleProxyas_ModuleProxy
minc=_ModuleProxy('nibabel.minc')
Expand Down
5 changes: 5 additions & 0 deletionsnibabel/arrayproxy.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -164,3 +164,8 @@ def is_proxy(obj):
returnobj.is_proxy
exceptAttributeError:
returnFalse


classCArrayProxy(ArrayProxy):
# Assume C array memory layout
order='C'
18 changes: 18 additions & 0 deletionsnibabel/brainvoyager/__init__.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
# emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
# See COPYING file distributed along with the NiBabel package for the
# copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
''' Support for BrainVoyager file formats '''
from .bv_mskimportBvMskHeader,BvMskImage
from .bv_vmpimportBvVmpHeader,BvVmpImage
from .bv_vtcimportBvVtcHeader,BvVtcImage
from .bv_vmrimportBvVmrHeader,BvVmrImage

__all__= ('BvMskHeader','BvMskImage',
'BvVmpHeader','BvVmpImage',
'BvVtcHeader','BvVtcImage',
'BvVmrHeader','BvVmrImage')
Loading

[8]ページ先頭

©2009-2025 Movatter.jp