o
    Æi  ã                   @   s„   d Z ddlmZ ddlmZmZmZ ddlZddl	m
Z
 ddlmZ ddlmZmZ ddlmZ d	d
lmZmZmZmZ g d¢ZdS )a  pydicom package -- easily handle DICOM files.
   See Quick Start below.

-----------
Quick Start
-----------

1. A simple program to read a dicom file, modify a value, and write to a new
   file::

    from pydicom.filereader import dcmread
    dataset = dcmread("file1.dcm")
    dataset.PatientName = 'anonymous'
    dataset.save_as("file2.dcm")

2. See the files in the examples directory that came with this package for more
   examples, including some interactive sessions.

3. Learn the methods of the Dataset class; that is the one you will work with
   most directly.

4. Questions and comments can be directed to the pydicom google group:
   https://groups.google.com/g/pydicom

5. Bugs and other issues can be reported in the issue tracker:
   https://www.github.com/pydicom/pydicom

é    )ÚDataElement)ÚDatasetÚFileDatasetÚFileMetaDatasetN)Údcmread)Údcmwrite)Úpixel_arrayÚiter_pixels)ÚSequenceé   )Ú__version__Ú__version_info__Ú__dicom_version__Ú__concepts_version__)r   r   r   r   r
   r   r   r   r	   r   r   r   r   )Ú__doc__Úpydicom.dataelemr   Úpydicom.datasetr   r   r   Úpydicom.examplesÚpydicomÚpydicom.filereaderr   Úpydicom.filewriterr   Úpydicom.pixels.utilsr   r	   Úpydicom.sequencer
   Ú_versionr   r   r   r   Ú__all__© r   r   úF/mnt/sdb/aimis/docanh/lib/python3.10/site-packages/pydicom/__init__.pyÚ<module>   s   