pydicom.tag.Tag¶
- pydicom.tag.Tag(arg: int | str | Tuple[int, int] | BaseTag, arg2: int | None = None) BaseTag[source]¶
Create a
BaseTag.General function for creating a
BaseTagin any of the standard forms:Tag(0x00100015)Tag((0x10, 0x50))Tag(0x0010, 0x0015)Tag("PatientName")
Changed in version 1.3: Added support for creating a
BaseTagusing an element keyword- Parameters:
arg (int or str or 2-tuple of int) –
If
intthen either the group number or the combined group and element numbers of the tagIf
strthen the corresponding element’s keywordIf
tuplethen the (group, element) numbers as (int,int).
arg2 (int, optional) – The element number of the DICOM tag, required when arg only contains the group number of the tag.
- Return type: