Metadata-Version: 2.4
Name: easy-medical-images
Version: 0.0.3a1
Summary: The easy way to manipulate medical images.
Author: AIM-HI-LAB
License-Expression: MIT
Requires-Python: >=3.12
Requires-Dist: numpy>=2.4.6
Requires-Dist: nibabel>=5.4.2
Requires-Dist: nilearn>=0.13.1
Requires-Dist: scipy>=1.17.1
Requires-Dist: matplotlib>=3.10.9
Requires-Dist: pydicom>=3.0.2
Requires-Dist: tqdm>=4.67.3
Requires-Dist: SimpleITK>=2.5.5
Description-Content-Type: text/markdown

# EasyMedicalImages
The easy way to manipulate medical images

This is a library that focuses on taking CT scans and transforming them into arrays in python; giving the user easy ways to manipulate them as well. This can easily be used for downstream usage of CT images within a Python script.

STILL DO NOT DOWNLOAD YET, WIP

### Quick Start:
```python
import EasyMedicalImages as EMI
path_to_folder_of_ct_scans=input("Input path to ct scans: ")
instance=EMI.HighLevel(path_to_folder=path_to_folder_of_ct_scans)
megadatalist=instance.run_on_directory()
print(megadatalist) # This outputs all of the images in that directory as arrays!
```

## Tour of the Library
### run_on_directory()


PyPI link: [PyPI](https://pypi.org/project/easy-medical-images/)