mitk.DICOMTag#
- class mitk.DICOMTag#
Bases:
pybind11_objectA single DICOM tag identified by
(group, element).DICOM tags are hexadecimal pairs identifying a data element in the DICOM standard, e.g.
(0x0010, 0x0010)is “Patient’s Name”.- __init__(self: mitk.DICOMTag, group: SupportsInt, element: SupportsInt) None#
Construct a DICOM tag.
- Parameters:
group – Tag group number (typically hexadecimal, e.g.
0x0010).element – Tag element number (typically hexadecimal, e.g.
0x0010).
Methods
__init__(self, group, element)Construct a DICOM tag.
Attributes
- __eq__(self: mitk.DICOMTag, other: mitk.DICOMTag) bool#
Check if two DICOM tags are equal.
- property element#
The DICOM tag element number.
- property group#
The DICOM tag group number.