View Source Dicom.DataElement (Dicom.ex v0.3.0)

A DICOM data element is one value or a list of values with a defined data type and uniquely identified by a tag within a Dicom.DataSet.

Summary

Types

t()

@type t() :: %Dicom.DataElement{
  element_number: term(),
  group_number: term(),
  values: term(),
  vr: term()
}

Functions

binary?(data_element)

from(keyword, values)

from(group_number, element_number, value_representation, values)

new(tag, value_representation, values)

@spec new(integer(), atom(), [any()]) :: t()

sequence?(data_element)

tag(data_element)

tag(group_number, element_number)

value(data_element, index \\ 0)