Metadata-Version: 2.1
Name: I2T2
Version: 0.0.1
Summary: Suite of useful tools for manipulating medical images.
Home-page: https://github.com/UCSF-intelligent-imaging/I2T2
Author: Pablo F. Damasceno
Author-email: pablo.damasceno@ucsf.edu
License: Apache Software License 2.0
Description: # Intelligent Imaging Tools and Tasks (I2T2) 
        > Library of useful tools for Medical Imaging Handling
        
        
        Instructions for installation and usage can be found below.
        
        ## Install
        
        `pip install I2T2`
        
        ## How to use
        
        ```
        # example usage:
        import matplotlib.pyplot as plt
        data_path = '../../../3_data/GE/Exam3038_Series5/'
        array = dcm2array(path_to_dicom_dir = data_path, sort_by_slice_location=True)
        plt.imshow(array[:,:,0])
        plt.show()
        ```
        
        
        
        
            2
        
        
        
Keywords: AI,Medical Imaging,DICOM
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
