Revision 429bf6e00f44ecc9576c805aa1cf59c264e8a8e4 authored by Andrey Zhavoronkov on 16 June 2023, 12:15:22 UTC, committed by Andrey Zhavoronkov on 16 June 2023, 12:15:22 UTC
2 parent s 451c539 + fd2575c
Raw File
README.md
# Description

The script is used to convert some kinds of DICOM data to regular images.
Then you can annotate these images on CVAT and get a segmentation mask.
The conversion script was tested on CT, MT and some multi-frame DICOM data.
DICOM files with series (multi-frame) are saved under the same name with a number postfix: 001, 002, 003, etc.

# Installation

```bash
python3 -m venv .env
. .env/bin/activate
pip install -r requirements.txt
```

# Running

```
. .env/bin/activate # if not activated
python script.py input_data output_data
```
back to top