Skip to main content

A package to predict DICOM image modalities

Project description

DCMP (DICOM Modality Predictor)

DCMP is a Python package that predicts the modality of DICOM (Digital Imaging and Communications in Medicine) images using a pre-trained scikit-learn model. It provides functionality to process individual DICOM files, lists of files, and entire directories, with options for sampling and skipping specific folders.

Features

  • Predict modality for individual DICOM files
  • Process lists of DICOM file paths
  • Analyze entire directories of DICOM files, including nested subdirectories
  • Option to sample a subset of files for faster processing of large datasets
  • Skip specific folders based on keywords
  • Multithreaded processing for improved performance
  • Command-line interface for easy use
  • Comprehensive error handling and reporting

Installation

You can install the DCMP package using pip:

pip install dcmp

Usage

Python API

Predicting a Single File

from dcmp import DicomModalityPredictor

predictor = DicomModalityPredictor()
result = predictor.predict_single_file('/path/to/your/dicom/file.dcm')
print(result)

Predicting a List of Files

from dcmp import DicomModalityPredictor

predictor = DicomModalityPredictor()

dicom_files = [
    '/path/to/file1.dcm',
    '/path/to/file2.dcm',
    '/path/to/file3.dcm',
]

results = predictor.predict_file_list(dicom_files)

for result in results:
    if result['error'] is None:
        print(f"File: {result['filename']}")
        print(f"Predicted Modality: {result['predicted_modality']}")
        print(f"Probability: {result['probability']:.4f}")
    else:
        print(f"Error processing {result['filename']}: {result['error']}")
    print("---")

Processing a Directory

from dcmp import DicomModalityPredictor
from dcmp.utils import process_anat_folders

predictor = DicomModalityPredictor()

base_path = '/path/to/dicom/folders'
skip_keywords = ['localizer', 'scout', 'symri', 'swi']  # It will skip the folders that include these keywords
sample_size = 20  # Process randomly up to 20 files per folder

results = process_anat_folders(base_path, predictor, sample_size=sample_size, skip_keywords=skip_keywords)

for folder, result in results.items():
    print(f"Folder: {folder}")
    print(f"Predicted Modality: {result['predicted_modality']}")
    print(f"Average Probability: {result['average_probability']:.4f}")
    print(f"Files Processed: {result['files_processed']} / {result['total_files']}")
    print("---")

Command-line Interface

The package also provides a command-line interface for easy use:

dcmp /path/to/dicom/folders --sample 20 --skip localizer scout symri swi --output results.json

Options:

  • --sample: Number of DICOM files to sample from each folder
  • --skip: Keywords to skip folders (can provide multiple)
  • --output: Path to save the results JSON file
  • --model: Path to a custom trained model file (optional)

Customization

Using a Custom Model

You can use your own trained scikit-learn model by providing the path to the model file:

predictor = DicomModalityPredictor(model_path='/path/to/your/custom_model.pkl')

Adjusting Thread Pool Size

The predict_file_list method uses a ThreadPoolExecutor for parallel processing. You can adjust the number of worker threads:

results = predictor.predict_file_list(dicom_files, max_workers=4)

Error Handling

The package includes comprehensive error handling. When processing multiple files, if an error occurs with one file, the package will continue processing the remaining files and include error information in the results.

Contributing

Contributions to the DCMP package are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • This package uses scikit-learn for the underlying machine learning model.
  • The model is trained on KI MRI scans.
  • DICOM file handling is done using the pydicom library.

Support

If you encounter any problems or have any questions, please open an issue on the GitHub repository.

Project details


Download files

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

Source Distribution

dcmp-0.1.1.tar.gz (24.0 MB view details)

Uploaded Source

Built Distribution

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

dcmp-0.1.1-py3-none-any.whl (24.0 MB view details)

Uploaded Python 3

File details

Details for the file dcmp-0.1.1.tar.gz.

File metadata

  • Download URL: dcmp-0.1.1.tar.gz
  • Upload date:
  • Size: 24.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.7

File hashes

Hashes for dcmp-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0f2802bf7dfdb15a8436944c413d98154460e747b2f3a9360c199afbdc2b78fa
MD5 62f83e4f2e933214628dfca9457c7a1c
BLAKE2b-256 235f9a5ba1865e141c48db14321f6055150ae31d6afa4d392f8cbe9574655a6e

See more details on using hashes here.

File details

Details for the file dcmp-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: dcmp-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.7

File hashes

Hashes for dcmp-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f3438ec6330490135493f9bdbdbb61fa3a5cde4c741a0231d978bd8ba2d060c2
MD5 6b411a29efe4c91181852ad658e0038b
BLAKE2b-256 c90e4efe12ce58547265a215e4005885652e585c81c2ec4dc9c6cd9bc755b015

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page