pydicom.filewriter.correct_ambiguous_vr

pydicom.filewriter.correct_ambiguous_vr(ds: Dataset, is_little_endian: bool, ancestors: list[Dataset] | None = None) Dataset[source]

Iterate through ds correcting ambiguous VR elements (if possible).

When it’s not possible to correct the VR, the element will be returned unchanged. Currently the only ambiguous VR elements not corrected for are all retired or part of DICONDE.

If the VR is corrected and is ‘US’ or ‘SS’ then the value will be updated using the convert_numbers() function.

Changed in version 3.0: The ancestors keyword argument was added.

Parameters:
  • ds (pydicom.dataset.Dataset) – The dataset containing ambiguous VR elements.

  • is_little_endian (bool) – The byte ordering of the values in the dataset.

  • ancestors (list[pydicom.dataset.Dataset] | None) – A list of the ancestor datasets to look through when trying to find the relevant element value to use in VR correction. Should be ordered from closest to furthest. If None then will build itself automatically starting at ds (default).

Returns:

ds – The corrected dataset

Return type:

dataset.Dataset

Raises:

AttributeError – If a tag is missing in ds that is required to resolve the ambiguity.