Metadata-Version: 1.1
Name: mudicom
Version: 0.0.4
Summary: Read and extract images from a DICOM file using GDCM
Home-page: https://github.com/neurosnap/mudicom
Author: Eric Bower
Author-email: neurosnap@gmail.com
License: LICENSE.rst
Description: 
        mudicom
        ========
        
        A python package that validates, reads, and extracts images from a DICOM file.
        
        This python package requires GDCM with the python wrapper
        
        Quick How To
        ------------
        
        .. code:: python
        
            import mudicom
            mu = mudicom.load("mudicom/tests/dicoms/ex1.dcm")
            # returns array of data elements as dicts
            mu.read()
            # returns dict of errors and warnings for DICOM
            mu.validate()
            # creates image object
            img = mu.image()
            # returns numpy array
            img.numpy()
            # using Pillow, saves DICOM image
            img.save_as_pil("ex1.jpg")
            # using matplotlib, saves DICOM image
            img.save_as_plt("ex1_2.jpg")
        
        Documentation
        -------------
        
        Full documentation is available at https://github.com/neurosnap/mudicom
        
        Requirements
        ------------
        
        - Python 2.7
        - GDCM with python wrapper
        
        Credits
        -------
        
        Written by Eric Bower
        
        Special thanks to `Mathieu Malaterre`_ (primary developer for GDCM), 
        of whom without this package would not be possible.
        
        .. _Mathieu Malaterre: https://github.com/malaterre
        
        
        Change Log
        ==========
        
        v0.0.3, 08-14-2014
        ------------------
        
        pip cannot read LICENSE.rst for some reason
        
        v0.0.3, 08-14-2014
        ------------------
        
        Weird permission issues with the egg
        
        v0.0.2, 08-14-2014
        ------------------
        
        Updated packaging description
        
        v0.0.1, 04-04-2014
        ------------------
        
        Initial release.
Keywords: dicom,gdcm,imaging,medical,images
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
