notmatthancock / pylidc

An object relational mapping for the LIDC dataset using sqlalchemy.
https://pylidc.github.io
Other
105 stars 41 forks source link

Access all DICOM attributes #30

Closed Jonas1312 closed 4 years ago

Jonas1312 commented 4 years ago

Hi,

Is there a way to access dicom attributes through pylidc?

Thanks

notmatthancock commented 4 years ago

Query-able attributes are limited to those defined on the respective classes. See the Scan class API and example usage.

If you want to access the raw dicom data, then you can use the load_all_dicom_images() member function on the Scan class. This function returns a list of pydicom.dataset.FileDataset instances.

Jonas1312 commented 4 years ago

ok thanks 👍