Skip to main content

The package deals with brain bundles images

Project description


[![license - GPL](https://img.shields.io/aur/license/yaourt.svg)](https://www.gnu.org/licenses/gpl-3.0.txt)

# Tractograpy

## It is a module deals withe Brain Bundles

It includes functions to read/write, visualise and register bundles
### "It's always preferred to use source code!"
## Installation:

Easy to install by using pip (recommended)

```commandline
pip install tractography
```
or conda

```commandline
conda install -c weekmo tractography
```

## Example 1:
#### Register two bundles
```python

from tractography.io import read_ply,write_trk
from tractography.registration import register
from tractography.viz import draw_brain

# Read bundles
data1 = read_ply('target.ply')
data2 = read_ply('subject.ply')

# Register bundle
aligned_bundle,mat = register(target=data1, subject=data2)

# Write to trk file
write_trk("aligned_bundle.trk", aligned_bundle)

# Export images before and after registration
draw_brain([data1,data2])
draw_brain([data1,aligned_bundle])
```

## Example 2:
#### Show all bundles in a folder
```python
from tractography.viz import draw_brain
from os import listdir
from os.path import isfile
from tractography.io import read_ply
import argparse

parser = argparse.ArgumentParser(description='Input argument parser.')
parser.add_argument('-f', type=str, help='location of files')
args = parser.parse_args()
# data_path = 'data/'
data_path = args.f
files = [data_path + f for f in listdir(data_path) if isfile(data_path + f) and f.endswith('.ply')]

brain = []
for name in files:
brain.append(read_ply(name))
draw_brain(brain)
```
Enjoy


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tractography-0.1.13.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

tractography-0.1.13-py2.py3-none-any.whl (1.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page