dicomlookup

来源:互联网 发布:学而时之 不亦说乎注音 编辑:程序博客网 时间:2024/06/14 03:38

dicomlookup

在DICOM数据字典中查询属性

Syntax

name = dicomlookup(group, element)
[group, element] = dicomlookup(name)

Description

name = dicomlookup(group, element) 查找当前DICOM数据字典中具有指定的组和元素标记(tags)的属性,并返回包含属性名称的字符向量。 group和element可以是十进制值或十六进制值。

[group, element] = dicomlookup(name) 查找由当前DICOM数据字典中由name指定的数学,并返回与该属性关联的组和元素标记。 返回十进制值。

Examples

Find the names of DICOM attributes using their tags.

name1 = dicomlookup('7FE0', '0010')name2 = dicomlookup(40, 4)

Look up a DICOM attribute's tag (GROUP and ELEMENT) using its name.

[group, element] = dicomlookup('TransferSyntaxUID')

Examine the metadata of a DICOM file. This returns the same value even if the data dictionary changes.

metadata = dicominfo('CT-MONO2-16-ankle.dcm');metadata.(dicomlookup('0028', '0004'))
0 0
原创粉丝点击