Metadata-Version: 1.1
Name: mudicom
Version: 0.0.5
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: The MIT License
===============

Copyright (c) 2014 Eric Bower

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
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.5, 08-14-2014
        ------------------
        
        Updated MANIFEST.in to include .rst, I'm a dumbass
        
        v0.0.4, 08-14-2014
        ------------------
        
        Removed LICENSE.rst from setup.py
        
        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
