Metadata-Version: 2.1
Name: dcm-parser
Version: 0.2.3
Summary: A lightning DICOM Parser
Home-page: https://github.com/PL97/DICOM_Parser
Author: Le Peng
Author-email: peng0347@umn.edu
License: MIT
Keywords: dcm,dicom,meta,dicom_header,png
Description-Content-Type: text/markdown

![GitHub Liscence](https://img.shields.io/github/license/PL97/DICOM_Parser)
![PyPi Download](https://img.shields.io/pypi/dm/DCM-parser)
![Pypi version](https://img.shields.io/pypi/v/DCM-parser)

## DCM-Parser
A effecient tool for extract dicom meta data from files.

This tool offers:
- convert dicom to png (if pixel array is 2D) / mp4 (3D)
- extract all meta data (dicom header) to a single csv file
- examize corrupted files and files with missing values
- multi-thread speed up exact HUNDREDS files in seconds

## Installation
```bash
pip install -r requirements.txt
pip install dcm-parser
```


## Usage

**ONE line for everything!**

```python
from dcm_parser import batch_extraction

batch_extraction(source_dir=[YOUR_SOURCE_DIR], dest_dir=[YOUR_TARGET_DIR], save_img=True)

```

## How to cite this work

If you find this git repo useful, please consider citing it using the snippet below:
```bibtex
@misc{DCM-parser,
    author={Le Peng},
    title={DCM-parser: A Lightning DICOM Parser},
    howpublished={\url{https://github.com/PL97/DICOM_Parser}},
    year={2022}
}
