Click or drag to resize
SoVRDicomDataGetDicomInfo Method

Generic method to get DICOM info.

Namespace: OIV.VolumeViz.Readers
Assembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 2024.1.3.0 (2024.1.3)
Syntax
public string GetDicomInfo(
	ushort group,
	ushort element
)

Parameters

group
Type: SystemUInt16

hexadecimal group tag value to retrieve info from.

element
Type: SystemUInt16

hexadecimal element tag value to retrieve info from in the group.

Return Value

Type: String

value info.

Remarks

The group and element parameters should be given using the hexadecimal tag values defined by the DICOM specification. For example Rescale Slope is (0028,1053) and Rescale Intercept is (0028,1052).

  • See http://medical.nema.org/

  • See http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/DICOM.html

To conveniently access the DICOM attributes, see the OIV.VolumeViz.Readers.SoVRDicomData.GetDicomDataSet() method.

See Also