Skip to main content

No project description provided

Project description

dicomselect: DICOM database and conversion software

dicomselect is a Python tool that simplifies the process of creating SQLite databases from directories containing .dcm files. Once the database is created, you can easily perform SQL-like queries on the data directly within Python. Additionally, dicomselect allows you to convert query results into various file formats supported by SimpleITK, providing flexibility in working with your DICOM data.

Installation

Python 3.10 or higher. You can install this project using pip. If you haven't already, it's recommended to create a virtual environment to isolate project dependencies.

pip install dicomselect

Documentation

Read the documentation.

Example

Clone this repo, install dicomselect, then run this example in the repo.

from dicomselect import Database
from pathlib import Path

db_path = Path('tests/output/example.db')
db_path.parent.mkdir(exist_ok=True)

# initialize the Database object with a path to the to-be-created SQLite database file
db = Database(db_path)

# create the .db file, using test data as the input directory.
db.create('tests/input/ProstateX', max_workers=4)

with db as query:
    # we only want to convert images with patient_id "ProstateX-0000" and image_direction "transverse"
    query_0000 = query.where('patient_id', '=', 'ProstateX-0000'
                             ).where('image_direction', '=', 'transverse')

    # print out a detailed extraction of our query
    print(query_0000)

# initialize the Plan object, with a template of DICOM headers for our conversion
# (note: dcm to dcm conversion is possible, if you only need restructuring of your data)
plan = db.plan('{patient_id}/prostateX_{series_description}_{instance_creation_time}', query_0000)

# ensure these properties are set
plan.target_dir = 'tests/output/example'
plan.extension = '.mha'
plan.max_workers = 4

# print out a detailed structure of our intended conversion
print(plan.to_string())

plan.execute()

Check out the results in tests/output/example.

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

dicomselect-0.10.4.tar.gz (70.0 kB view details)

Uploaded Source

Built Distribution

dicomselect-0.10.4-py3-none-any.whl (70.2 kB view details)

Uploaded Python 3

File details

Details for the file dicomselect-0.10.4.tar.gz.

File metadata

  • Download URL: dicomselect-0.10.4.tar.gz
  • Upload date:
  • Size: 70.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for dicomselect-0.10.4.tar.gz
Algorithm Hash digest
SHA256 26bd031fa0d7f3c3963cf82ae76b913cbbfc2fa7b441661b545c54322421b270
MD5 8ec2aa7a270b116caf66054ffb4ea3a3
BLAKE2b-256 09cbf6f3228bd48658aff5a8679fd8a359c678b8ba1feb9e3b7da9c24bfee491

See more details on using hashes here.

File details

Details for the file dicomselect-0.10.4-py3-none-any.whl.

File metadata

  • Download URL: dicomselect-0.10.4-py3-none-any.whl
  • Upload date:
  • Size: 70.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for dicomselect-0.10.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0238c812b96c8f161c060c30d06642b83f2450e81b1ae8317f42e23bbdf36bac
MD5 4181fabd5a2b217e7627f668313e4ad2
BLAKE2b-256 c9ba627992ff40e7f3d1daf92d20a30126466ebec09f4060f76876b28c9af2be

See more details on using hashes here.

Supported by

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