|
Project Information
Links
|
Neuroinfo ToolkitNeuroinfo Toolkit (NIT) is a general-purpose software development toolkit that emphasizes Neuroinformatics, Neuroimaging, and other Neuroscience research. History
InstallationWe recommend reading: Installation If you're sure you have all dependencies installed: easy_install neuroinfo_toolkit Supported PlatformsQuestions, comments, or contributions: timothy [period] okeefe [at] gmail [period] com Currently developed on
Tested on
PyPihttp://pypi.python.org/pypi/neuroinfo-toolkit/1.3.1 Example Code#!/usr/bin/env python
import neuro
neuro.load("1.3.1")
from neuro.filesystem import *
from neuro.nifti import Nifti
file = "/data/file.nii.gz"
nifti = Nifti(file)
nifti.swapOrientation()
ts = nifti.getTimeseries(1, 1, 1)
filePutContents("~/timeseries.txt", ts)
|