Metadata-Version: 2.1
Name: pytranskit
Version: 0.1.2
Summary: Python transport based signal processing toolkit.
Home-page: https://github.com/rohdelab/PyTransKit
Author: Abu Hasnat Mohammad Rubaiyat, Xuwang Yin, Liam Cattell
Author-email: ar3fx@virginia.edu, xuwangyin@gmail.com
License: UNKNOWN
Description: # PyTransKit
        Python Transport Based Signal Processing Toolkit
        
        ## Installation
        The library could be installed through pip
        ```
        pip install pytranskit
        ```
        Alternately, you could clone/download the repository and add the `pytranskit` directory to your Python path
        ```
        import sys
        sys.path.append('path/to/pytranskit')
        
        from pytranskit.optrans.continuous.cdt import CDT
        ```
        
        ## Tutorials
        - Cumulative Distribution Transform (CDT) tutorial [[notebook](https://github.com/rohdelab/PyTransKit/blob/master/tutorials/01_tutorial_cdt.ipynb)] [[nbviwer](https://nbviewer.jupyter.org/github/rohdelab/PyTransKit/blob/master/tutorials/01_tutorial_cdt.ipynb)]
        - Radon-CDT tutorial [[notebook](https://github.com/rohdelab/PyTransKit/blob/master/tutorials/02_tutorial_rcdt.ipynb)] [[nbviewer](https://nbviewer.jupyter.org/github/rohdelab/PyTransKit/blob/master/tutorials/02_tutorial_rcdt.ipynb)]
        - Signal compression with DCT-CDT transform [[notebook](https://github.com/rohdelab/PyTransKit/blob/master/tutorials/Example_01_CDT-DCT-Reconstruction.ipynb)] [[nbviewer](https://nbviewer.jupyter.org/github/rohdelab/PyTransKit/blob/master/tutorials/Example_01_CDT-DCT-Reconstruction.ipynb)]
        
        ## Resources
        - Overview of ideas/theory/applications https://www.dropbox.com/s/zrhimspwbtpgh12/Lagrangian_transform_19_final.pptx?dl=0
        - External website http://imagedatascience.com/transport/
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
