DICOM Modality (0008,0060) - C++ enum

/** Type of equipment that originally acquired the data used to create the images in this Series. 
    Tag: (0008,0060). VR: Code String (CS)

    \note
    -# The XA modality incorporates the retired modality DS.
    -# The RF modality incorporates the retired modalities CF, DF, VF.
    -# The modality listed in the Modality Data Element (0008,0060) may not match the name of the IOD in which it appears.
        For example, a SOP Instance from XA IOD may list the RF modality when an RF implementation produces an XA object.
    -# The MR modality incorporates the retired modalities MA and MS.
    -# The US modality incorporates the retired modalities EC, CD, and DD.
    -# The NM modality incorporates the retired modality ST.

    Refrence: http://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_C.7.3.html#sect_C.7.3.1.1.1
 */
enum class DcmModality 
{
    /** DICOM3.0 defined terms: @{ */
    AR = 0x00,          /**< Autorefraction */
    ASMT,               /**< Content Assessment Results */
    AU,                 /**< Audio */
    BDUS,               /**< Bone Densitometry (ultrasound) */
    BI,                 /**< Biomagnetic imaging */
    BMD,                /**< Bone Densitometry (X-Ray) */
    CR,                 /**< Computed Radiography */
    CT,                 /**< Computed Tomography */
    CTPROTOCOL,         /**< CT Protocol (Performed) */
    DG,                 /**< Diaphanography */
    DOC,                /**< Document */
    DX,                 /**< Digital Radiography */
    ECG,                /**< Electrocardiography */
    EPS,                /**< Cardiac Electrophysiology */
    ES,                 /**< Endoscopy */
    FID,                /**< Fiducials */
    GM,                 /**< General Microscopy */
    HC,                 /**< Hard Copy */
    HD,                 /**< Hemodynamic Waveform */
    IO,                 /**< Intra-Oral Radiography */
    IOL,                /**< Intraocular Lens Data */
    IVOCT,              /**< Intravascular Optical Coherence Tomography */
    IVUS,               /**< Intravascular Ultrasound */
    KER,                /**< Keratometry */
    KO,                 /**< Key Object Selection */
    LEN,                /**< Lensometry */
    LS,                 /**< Laser surface scan */
    MG,                 /**< Mammography */
    MR,                 /**< Magnetic Resonance */
    M3D,                /**< Model for 3D Manufacturing */
    NM,                 /**< Nuclear Medicine */
    OAM,                /**< Ophthalmic Axial Measurements */
    OCT,                /**< Optical Coherence Tomography (non-Ophthalmic) */
    OP,                 /**< Ophthalmic Photography */
    OPM,                /**< Ophthalmic Mapping */
    OPT,                /**< Ophthalmic Tomography */
    OPTBSV,             /**< Ophthalmic Tomography B-scan Volume Analysis */
    OPTENF,             /**< Ophthalmic Tomography En Face */
    OPV,                /**< Ophthalmic Visual Field */
    OSS,                /**< Optical Surface Scan */
    OT,                 /**< Other */
    PLAN,               /**< Plan */
    PR,                 /**< Presentation State */
    PT,                 /**< Positron emission tomography (PET) */
    PX,                 /**< Panoramic X-Ray */
    REG,                /**< Registration */
    RESP,               /**< Respiratory Waveform */
    RF,                 /**< Radio Fluoroscopy */
    RG,                 /**< Radiographic imaging (conventional film/screen) */
    RTDOSE,             /**< Radiotherapy Dose */
    RTIMAGE,            /**< Radiotherapy Image */
    RTINTENT,           /**< Radiotherapy Intent */
    RTPLAN,             /**< Radiotherapy Plan */
    RTRAD,              /**< RT Radiation */
    RTRECORD,           /**< RT Treatment Record */
    RTSEGANN,           /**< Radiotherapy Segment Annotation */
    RTSTRUCT,           /**< Radiotherapy Structure Set */
    RWV,                /**< Real World Value Map */
    SEG,                /**< Segmentation */
    SM,                 /**< Slide Microscopy */
    SMR,                /**< Stereometric Relationship */
    SR,                 /**< SR Document */
    SRF,                /**< Subjective Refraction */
    STAIN,              /**< Automated Slide Stainer */
    TEXTUREMAP,         /**< Texture Map */
    TG,                 /**< Thermography */
    US,                 /**< Ultrasound */
    VA,                 /**< Visual Acuity */
    XA,                 /**< X-Ray Angiography */
    XC,                 /**< External-camera Photography */
    /** @} */ 

    /** Retired defined terms: @{ */
    AS,                 /**< Angioscopy */
    CD,                 /**< Color flow Doppler */
    CF,                 /**< Cinefluorography */
    CP,                 /**< Culposcopy */
    CS,                 /**< Cystoscopy */
    DD,                 /**< Duplex Doppler */
    DF,                 /**< Digital fluoroscopy */
    DM,                 /**< Digital microscopy */
    DS,                 /**< Digital Subtraction Angiography */
    EC,                 /**< Echocardiography */
    FA,                 /**< Fluorescein angiography */
    FS,                 /**< Fundoscopy */
    LP,                 /**< Laparoscopy */
    MA,                 /**< Magnetic resonance angiography */
    MS,                 /**< Magnetic resonance spectroscopy */
    OPR,                /**< Ophthalmic Refraction */
    ST,                 /**< Single-photon emission computed tomography (SPECT) */
    VF,                 /**< Videofluorography */
    /** @} */
};

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章