DICOM.dcm_parseMethod

dcm_parse(fn::AbstractString)

Reads file fn and returns a Dict

DICOM.lookup_vrMethod
lookup_vr(tag::Tuple{Integer,Integer})

Return VR value for tag from DICOM dictionary

Example

julia> lookup_vr((0x0028,0x0004))
"CS"
DICOM.@tag_strMacro
@tag_str(s)

Return the dicom tag, corresponding to the string s.

julia> using DICOM

julia> tag"ROI Mean"
(0x6000, 0x1302)