Metadata-Version: 2.1
Name: trako
Version: 0.2.dev9
Summary: The TRAKO Project: Compression of DTI Streamlines.
Home-page: https://github.com/haehn/TRAKO
Author: Daniel Haehn
Author-email: haehn@mpsych.org
License: UNKNOWN
Description: # TRAKO
        
        ## Installation as PyPI package coming soon!
        
        ## Manual installation
        
        Please follow these steps with Miniconda or Anaconda installed:
        
        ```
        # create environment
        conda create --name TRAKO python=3.6
        conda activate TRAKO
        conda install numpy
        conda install matplotlib
        conda install -c anaconda vtk 
        conda install -c conda-forge scikit-build 
        pip install pygltflib
        pip install prettytable
        
        # get TRAKO
        git clone git@github.com:haehn/TRAKO.git
        cd TRAKO
        
        # initialize DracoPy submodule
        git submodule init
        git submodule update
        
        cd externals/DracoPy
        # initialize Draco submodule
        git submodule init
        git submodule update
        python setup.py install
        
        cd ../../
        ```
        
        ## Usage
        ```
        ./trakofy.py -i DATA/example.vtp -o /tmp/test.tko
        ./untrakofy.py -i /tmp/test.tko -o /tmp/restored.vtp
        ./compare.py -a DATA/example.vtp -b /tmp/restored.vtp
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
