gpt4 book ai didi

uuid - 覆盖 DICOM 中的像素数据时应替换哪些 DICOM UID?

转载 作者:行者123 更新时间:2023-12-02 16:18:30 26 4
gpt4 key购买 nike

我正在尝试从现有文件创建一个新的 DICOM 文件(实例),我在其中更改了像素数据。

我知道我需要在替换像素数据时更改一些 UID。目前,我正在生成 SOPInstanceUIDMediaStorageSOPInstanceUIDReferencedSOPInstanceUID(只要适用)。

是否需要更改其他一些 UID 才能获得有效的 DICOM 文件?如果您能指出我在标准中的何处查找此内容,将会很有帮助。

最佳答案

以下是规范中关于 UID 唯一性的引述:

Unique Identifiers (UIDs) provide the capability to uniquely identify a wide variety of items. They guarantee uniqueness across multiple countries, sites, vendors and equipment. Different classes of objects, instance of objects and information entities can be distinguished from one another across the DICOM universe of discourse irrespective of any semantic context.
PS 3.5 2017a - Data Structures and Encoding - 9 Unique Identifiers (UIDs)

如果您要更改像素数据(将压缩(传输语法)更改为有损或一起覆盖),则必须更改 SOP Instance UID (0008,0018)

关于 Media Storage SOP Instance UID (0002,0003),如您所见,它属于第 2 组,即文件元信息 header 。这些标签仅在您将实例序列化到硬盘时出现。这应该与 SOP Instance UID (0008,0018) 具有相同的值。所以,如果你改变了一个,你也应该改变另一个。请引用this规范中的回答和以下部分:

C.12.1.1.1 SOP Class UID, SOP Instance UID
The SOP Class UID and SOP Instance UID Attributes are defined for all DICOM IODs. However, they are only encoded in Composite IODs with the Type equal to 1. See Section C.1.2.3. When encoded they shall be equal to their respective Attributes in the DIMSE Services and the File Meta Information header (see PS3.10 Media Storage).
PS3.3 2021a - Information Object Definitions - C.12.1.1.1

Referenced SOP Instance UID (0008,1155) 是对其他实例的引用。这取决于您是否需要根据您的情况进行更改;一般不需要。请引用this回答有关引用 SOP 实例 UID 的更多详细信息。

Transfer Syntax UID (0002,0010) 需要根据您应用的新传输语法进行更改。覆盖像素数据时,如果要更改它,请相应地更改 UID。

SOP 类 UID (0008,0016)媒体存储 SOP 类 UID (0002,0002) 定义您的 SOP 类。通过仅仅改变像素数据,你并没有改变它。所以你不需要改变这个 UID。

实现类 UID (0002,0012) 与创建者相关联。无需更改。

关于Study Instance UID (0020,000D)Series Instance UID (0020,000E) 的决定取决于您的用例。这取决于您希望用户如何处理您新创建的实例。比如说,在为 Study 创建报告时,许多实现不会更改 Study IUID 但会创建新 Series(即新 Series IUID)。

详情请引用以下答案:
https://stackoverflow.com/a/46316162/5779732
https://stackoverflow.com/a/53775161/5779732

关于uuid - 覆盖 DICOM 中的像素数据时应替换哪些 DICOM UID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66115428/

26 4 0
文章推荐: java - 所有测试类中的所有测试终止后,在 junit 5 中运行代码
文章推荐: reactjs - 如何使用 Jest 和 react 测试库测试调用提交表单的按钮
文章推荐: javascript - 无法分配给对象 'property' 的只读属性 '#'