You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
metadata_datasets = [load_json_dataset(ds) for ds in metadata]
563
+
metadata_datasets = [Dataset.from_json(ds) for ds in metadata]
564
+
565
+
Note that the metadata may include references to BulkData elements.
566
+
By default, BulkData elements will not be handled and the values not be automatically retrieved.
567
+
To handle BulkData elements and retrieve their values, one has to provide a ``bulk_data_uri_handler`` callable to the `pydicom.dataset.Dataset.from_json() <https://pydicom.github.io/pydicom/dev/reference/generated/pydicom.dataset.Dataset.html#pydicom.dataset.Dataset.from_json>`_ method.
0 commit comments