Skip to main content

MedicalImageAnalysis

MedicalImageAnalysis is a comprehensive Python toolkit for managing and analyzing medical imaging data. It can read unorganized DICOM and RTSTRUCTs files, automatically organizing them into separate image instances. The platform supports both 2D and 3D modalities, with the ability to convert 2D contours to 3D surface meshes and vice versa. It also provides rigid registration between images, along with a variety of standard image processing techniques, enabling seamless integration into research and clinical workflows. There are additional reader file types for stl and 3mf, where a fake image is generated based on the boundary of the input mesh.

The module currently imports 6 different modalities:

  1. CT
  2. MR
  3. US
  4. RF
  5. DX
  6. RTSTRUCT

CT and MR images will be converted to Feet-First-Supine (if not so already), and the image position will be updated to reflect the needed rotations.

Disclaimer: All the files will be loaded into memory so be sure you have enough RAM available. Meaning don't select a folder path that contains 100s of different patient folders because you could possibly run out of RAM. Also, this module does not distinguish between patient IDs or patient names, it will make an image instance for each image regardless of patient id/name.

Reader (Dicom)

The reader works by inputting a file path or a list of files. The files are read and split by modality, series instance uid, acquisition number (if it exists), and image orientation matrix. An image class instance is generated for each image. If an RTSTRUCT exist, it will match with an existing imported image, right now there is no method for importing an RTSTRUCT that doesn't have a corresponding image. The match image class contains a ROI dictionary variable that will create a ROI instance for each imported ROI name (the same process exists for POIs).

Utils

The utils folder contains useful meshing, image conversion, and registration techniques. It doesn't require the images to be read in using the reader class or have image or ROI classes based on the reader, it exists completely independent.

Installation

Using pip:

pip install medicalimageanalysis

During install there can be an error with a jupyter dependency file path containing over 260 characters exceeding windows limit. This can be resolved by enabling long paths on Windows or simply trying to install again, it will skip the package causing the error.

Reader Example 1

The user sets a path to the folder containing the dicom files or highest level folder with subfolders containing dicom files.

import medicalimageanalysis as mia

path = r'/path/to/folder'

mia.read_dicoms(folder_path=path)

Reader Example 2

The user has more options if they are specifics requirements.

  1. file_list - if the user already has the files wanted to read in, must be in type list
  2. exclude_files - if the user wants to not read certain files
  3. only_tags - does not read in the pixel array just the tags
  4. only_modality - specify which modalities to read in, if not then all modalities will be read
  5. only_load_roi_names - will only load rois with input name

Note: if folder_path and file_list are both input, then folder_path will be used and not both.

import medicalimageanalysis as mia

file_list = ['filepath1.dcm', 'filepath2.dcm', ...]
exclude_files = ['filepath10.dcm', 'filepath11.dcm', ...]

mia.read_dicoms(file_list=file_list, exclude_files=exclude_files, only_tags=True, only_modality=['CT'],
                only_load_roi_names=['Liver', 'Tumor'])

Retrieve image and tags:

The images are stored in a list. Each image instance contains a 3D array (None if only_tags=True), all tag information and popular tags have their own respective variable.

Note: Even 2D images will contain a 3D array, along with a fake slice thickness of 1 mm.

import medicalimageanalysis as mia

path = r'/path/to/folder'

mia.read_dicoms(folder_path=path)

image_list = mia.Data.image_list
image = mia.Data[image_list[0]]

array = image.array
tags = image.tags  # list of all the tags, for 100 slice CT scan the tags list would be 0-99 each containing a dict

name = image.patient_name  # or tags[0].PatientName
spacing = image.spacing  # inplane spacing followed by slice thickness

Instance variables: base_position, date, dimensions, filepaths, frame_ref, image_matrix, mrn, orientation, origin, patient_name, plane, pois, rgb, rois, sections, series_uid, skipped_slice, sops, spacing, tags, time, unverified

Retrieve ROI/POIs:

Each image contains a roi and poi dictionary, if a RTSTRUCT file associates with an image then each ROI/POI is added to respective image dictionary.

import medicalimageanalysis as mia

path = r'/path/to/folder'

reader = mia.Reader(folder_path=path)
reader.read_dicoms()

image_list = mia.Data.image_list
image = mia.Data[image_list[0]]

roi_names = mia.Data.roi_list
roi = image.rois[roi_names[0]]
contour_position = roi.contour_position

poi_names = mia.Data.poi_list
poi = image.rois[poi_names[0]]
point_position = poi.point_position

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

medicalimageanalysis-2.1.91.tar.gz (102.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

medicalimageanalysis-2.1.91-py3-none-any.whl (114.8 kB view details)

Uploaded Python 3

File details

Details for the file medicalimageanalysis-2.1.91.tar.gz.

File metadata

  • Download URL: medicalimageanalysis-2.1.91.tar.gz
  • Upload date:
  • Size: 102.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for medicalimageanalysis-2.1.91.tar.gz
Algorithm Hash digest
SHA256 8cdd19847e94f20fc77ee2022c3d71e24763974d92e58c1264f3612af1b744dc
MD5 5ecf059b8d9855390650f23e215f612b
BLAKE2b-256 fed75b1d61fe2177249bf9e42300dd8c6df1c4004e4c4ed62d2af555eb649be3

See more details on using hashes here.

File details

Details for the file medicalimageanalysis-2.1.91-py3-none-any.whl.

File metadata

File hashes

Hashes for medicalimageanalysis-2.1.91-py3-none-any.whl
Algorithm Hash digest
SHA256 c226bbf2cbe29ac603716b3e4dbbb90e45f7404839e18eb8f54f43344763ce33
MD5 8098094d649504c56c66fc0801899dfd
BLAKE2b-256 8bc28f68bf4c913ba42cb580905946eae416d9e460fe2ff1d0f3a0e5fceb794b

See more details on using hashes here.

Release history Release notifications | RSS feed

2.1.92

2 files

This release

2.1.91 This release

2 files

2.1.90

2 files

2.1.89

2 files

2.1.88

2 files

2.1.87

2 files

2.1.86

2 files

2.1.85

2 files

2.1.84

2 files

2.1.83

2 files

2.1.82

2 files

2.1.81

2 files

2.1.80

2 files

2.1.79

2 files

2.1.78

2 files

2.1.77

2 files

2.1.76

2 files

2.1.75

2 files

2.1.74

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page