Skip to main content

Dicom Metadata structures

Project description

DicomMeta

dicommeta is a Python library for efficiently storing large amounts of Dicom Metadata

Installation

Use the package manager pip to install dicommeta.

pip install dicommeta

Usage

from pprint import pprint

from dicommeta.Utils import Mode
from dicommeta.Struct import Study, Series, Instance

new_dicom_study = Study(
                        StudyInstanceUID='1.3.6.1.4.1.14519.5.2.1.4334.1501.757929841898426427124434115918',
                        SpecificCharacterSet='ISO_IR 100',
                        StudyDate="20190701",
                        StudyTime='023750',
                        AccessionNumber='sdfk324234',
                        ReferringPhysicianName='Dr Strange',
                        PatientName='John Doe',
                        PatientID='A123',
                        StudyUID='study001',
                        PatientBirthDate='20000101',
                        mode=Mode.CT)

new_series01 = Series(seriesUID='series001')
new_series01.add_instance(Instance(SOPinstanceUID='Instance001'))
new_series01.add_instance(Instance(SOPinstanceUID='Instance002'))
new_series01.add_instance(Instance(SOPinstanceUID='Instance002'))
new_dicom_study.add_series(new_series01)
new_series11 = Series(seriesUID='series001')
new_series11.add_instance(Instance(SOPinstanceUID='Instance002'))
new_dicom_study.add_series(new_series11)
new_series11.add_instance(Instance(SOPinstanceUID='Instance003'))
new_dicom_study.add_series(new_series11)

new_series02 = Series(seriesUID='series002')
new_series02.add_instance(Instance(SOPinstanceUID='Instance002'))
new_series02.add_instance(Instance(SOPinstanceUID='Instance003'))
new_dicom_study.add_series(new_series02)

pprint(new_dicom_study.get_dict())
pprint(new_dicom_study.get_series(seriesUID='series002'))

new_study01 = Study(StudyUID='study002', StudyDate=['20200101'])
new_series03 = Series(seriesUID='series003')
new_series03.add_instance(Instance(SOPinstanceUID='Instance01'))
new_study01.add_series(new_series03)

study_list = [new_dicom_study, new_study01]

for study in study_list:
    for instance in study.series_dict:
        pprint(study.get_series(instance))
        print("")

print(new_dicom_study.get_series_ids())

print(new_dicom_study.study_datetime)
print(new_dicom_study.patient_age)

print(new_study01.study_datetime)
print(new_study01.patient_age)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

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

dicommeta-0.6.7.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

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

dicommeta-0.6.7-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file dicommeta-0.6.7.tar.gz.

File metadata

  • Download URL: dicommeta-0.6.7.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.0 CPython/3.11.3 Darwin/22.4.0

File hashes

Hashes for dicommeta-0.6.7.tar.gz
Algorithm Hash digest
SHA256 bce14a8c4bee51a75de96d74796ab1856c1b5f72636f76ac061a416572663eff
MD5 72d71116a27bf3a16a43ec3132f1aa9b
BLAKE2b-256 05a863aefd31c56fe434efa096fa55b0627108f81da0116a310ce05b2bfd4d79

See more details on using hashes here.

File details

Details for the file dicommeta-0.6.7-py3-none-any.whl.

File metadata

  • Download URL: dicommeta-0.6.7-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.0 CPython/3.11.3 Darwin/22.4.0

File hashes

Hashes for dicommeta-0.6.7-py3-none-any.whl
Algorithm Hash digest
SHA256 dba5f5304fd94340f48493e976dffc6f713278c6b16db910bf74046dd51ca009
MD5 98a95dff5fa6dffdf72ad867de2d1822
BLAKE2b-256 8a0aea47b560dc7a89f35af28e94b9b26a4b1913c9f6dd213d30c9ee6026175e

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