Metadata-Version: 2.1
Name: tigersyn
Version: 0.0.4
Summary: Processing MRI images based on deep-learning
Home-page: https://github.com/StanleyWangTW/tigersyn
Author: X. S. Wang
Author-email: 
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# TigerSyn
### As python package
**Download**
```
pip install tigersyn
```
**Usage**
```python
import tigersyn
tigersyn.run('s', r'C:\T1w_dir', r'C:\output_dir')
tigersyn.run('s', r'C:\T1w_dir\**\*.nii.gz', r'C:\output_dir')
tigersyn.run('s', r'C:\T1w_dir\**\*.nii.gz') # storing output in the same dir
tigersyn.run('sz', r'C:\T1w_dir') # Force storing nii.gz format
```
```
s: Producing syntheseg mask
z: Force storing nii.gz format
```
