한국어

Chapter 3: DICOM and Image Standards

Digital Imaging and Communications in Medicine

3.1 Introduction to DICOM

DICOM (Digital Imaging and Communications in Medicine) is the international standard for medical imaging. It defines formats for storing medical images and protocols for exchanging them between systems, enabling interoperability across vendors and institutions.

1993
DICOM 3.0 Published
4000+
Defined Attributes
100+
SOP Classes
99%
Vendor Adoption

3.2 DICOM Information Model

DICOM organizes medical images in a hierarchical structure:

DICOM Hierarchy

  1. Patient: Individual person receiving care
  2. Study: Single clinical examination (e.g., CT Chest)
  3. Series: Sequence of related images (e.g., axial series)
  4. Instance: Individual image or object (single slice)

Unique Identifiers (UIDs)

DICOM uses globally unique identifiers to ensure each object can be unambiguously referenced:

UID Type Scope Example Use
Study Instance UID Unique per study Links all series in one exam
Series Instance UID Unique per series Groups related images
SOP Instance UID Unique per object Identifies individual image
SOP Class UID Defines object type CT Image Storage, MR Image Storage

3.3 DICOM Data Elements

DICOM files contain data elements (attributes) identified by tags. Each tag consists of a group and element number in hexadecimal format.

Essential DICOM Tags

Tag Name Description
(0010,0010) Patient Name Patient's full name
(0010,0020) Patient ID Medical record number
(0008,0020) Study Date Date study performed
(0008,0060) Modality CT, MR, US, CR, etc.
(0008,1030) Study Description Description of examination
(0028,0010) Rows Image height in pixels
(0028,0011) Columns Image width in pixels
(7FE0,0010) Pixel Data Actual image pixel values

3.4 DICOM Network Services

DICOM defines network protocols for exchanging images and worklists between systems:

DICOM Services (DIMSE)

Service Operation Use Case
C-STORE Store image Send images to PACS
C-FIND Query database Search for studies
C-MOVE Retrieve images Pull images from PACS
C-GET Retrieve directly Alternative to C-MOVE
C-ECHO Verify connectivity Test DICOM connection

DICOM Association

Before exchanging data, DICOM systems establish an "association" where they negotiate supported services (SOP Classes), transfer syntaxes (encoding), and roles. This handshake ensures both parties can communicate effectively.

3.5 DICOMweb

DICOMweb provides RESTful web services for DICOM operations, enabling modern web-based applications:

DICOMweb Services

Service HTTP Method Purpose
WADO-RS GET Retrieve studies/series/instances
STOW-RS POST Store DICOM objects
QIDO-RS GET Query for studies/series
UPS-RS Various Unified worklist service
// Example QIDO-RS query for studies
GET /dicomweb/studies?PatientName=Smith*&StudyDate=20240101-20240131

// Example WADO-RS retrieve
GET /dicomweb/studies/1.2.3.../series/1.2.4.../instances/1.2.5...

3.6 Image Encoding and Compression

DICOM supports multiple transfer syntaxes for encoding pixel data:

Transfer Syntaxes

Transfer Syntax Compression Use Case
Implicit VR Little Endian None Default, widely supported
Explicit VR Little Endian None Clear VR specification
JPEG Lossless Lossless ~3:1 Diagnostic quality archival
JPEG 2000 Lossless Lossless ~3:1 Modern lossless standard
JPEG 2000 Lossy Lossy 10:1+ Review, non-diagnostic
JPEG-LS Lossless/near-lossless Efficient compression

⚠️ Lossy Compression Considerations

Lossy compression should be used with caution in medical imaging. While it reduces storage requirements, it may affect diagnostic accuracy. Regulatory guidelines and institutional policies typically specify acceptable compression ratios for different clinical uses.

3.7 DICOM Structured Reporting

DICOM SR enables structured, machine-readable clinical reports with coded content:

SR Document Types

3.8 IHE Integration Profiles

Integrating the Healthcare Enterprise (IHE) defines implementation profiles that specify how DICOM and other standards work together in clinical workflows:

Profile Purpose Key Standards
SWF Scheduled Workflow HL7, DICOM Worklist
XDS-I Cross-enterprise image sharing DICOM, HL7, XDS
PIR Patient Information Reconciliation HL7, DICOM
IOCM Imaging Object Change Management DICOM

✓ DICOM Conformance Statement

Every DICOM-compliant product must publish a Conformance Statement documenting its supported SOP Classes, transfer syntaxes, and network roles. Reviewing conformance statements is essential when integrating imaging systems to ensure compatibility.

📌 Key Takeaways

📝 Review Questions

  1. Describe the DICOM information model hierarchy. How are Patient, Study, Series, and Instance related?
  2. Explain the purpose and structure of DICOM tags. Identify three critical tags for image identification.
  3. Compare traditional DICOM network services (C-STORE, C-FIND, C-MOVE) with DICOMweb services. What are the advantages of DICOMweb?
  4. What is a DICOM transfer syntax? When would you choose lossless vs. lossy compression?
  5. What role do DICOM UIDs play in ensuring image uniqueness across healthcare enterprises?
  6. Describe the IHE Scheduled Workflow profile and its importance in radiology department operations.

3.8 Simulator ENUM and Threshold Mapping (Compression Domain)

Medical image compression sits at the intersection of diagnostic quality preservation and storage and transmission efficiency. The simulator's COMPRESSION ENUM exposes eight standardised compression strategies, each with its corresponding DICOM Transfer Syntax UID and threshold parameters.

Table 3.8.1 — Compression ENUM to DICOM Transfer Syntax UID Mapping
ENUMDICOM Transfer Syntax UIDLossy / LosslessPrimary Use
JPEG_BASELINE1.2.840.10008.1.2.4.50Lossy8-bit visible imagery
JPEG_LOSSLESS1.2.840.10008.1.2.4.70LosslessLegacy diagnostic imaging
JPEG_2000_LOSSLESS1.2.840.10008.1.2.4.90LosslessCT and MR diagnostic standard
JPEG_2000_LOSSY1.2.840.10008.1.2.4.91LossyLong-term archive
JPEG_LS1.2.840.10008.1.2.4.80 / .81Lossless / near-losslessX-ray, CR, DR
HEVC1.2.840.10008.1.2.4.107–109Lossy / losslessVideo and 4D imaging
RLE1.2.840.10008.1.2.5LosslessBinary or low-frequency images
DEFLATE1.2.840.10008.1.2.1.99LosslessNon-pixel metadata payloads

Each compression ENUM is selectable from the simulator's Panel 1 (Algorithm) compression dropdown. When the user selects an ENUM the simulator estimates the expected compression ratio, PSNR (Peak Signal-to-Noise Ratio), SSIM (Structural Similarity Index Measure), and encoding/decoding throughput in megabytes per second. JPEG 2000 Lossless is the most widely adopted scheme for CT and MR diagnostic imaging, typically achieving 2:1 to 3:1 compression while guaranteeing pixel-level fidelity.

JPEG-LS — A Compression Standard Tailored to Medical Imaging

JPEG-LS (ISO/IEC 14495), built on the LOCO-I (Low Complexity Lossless Compression for Images) algorithm, has acquired particular significance in medical imaging because of its combination of low computational complexity and strong compression ratios. For high-resolution, high-bit-depth modalities such as X-ray, CR, and DR, JPEG-LS encodes approximately two to three times faster than JPEG 2000 Lossless while delivering five to ten per cent better compression ratios.

Table 3.8.2 — Recommended Compression Per Modality
ModalityRecommendedAlternativeRationale
CT diagnosticJPEG_2000_LOSSLESSJPEG_LSAbsolute preservation of Hounsfield Units
MR diagnosticJPEG_2000_LOSSLESSJPEG_LSPreservation across multiple sequences
X-rayJPEG_LSJPEG_2000_LOSSLESSHigh bit depth and fast decoding
Ultrasound (still)JPEG_2000_LOSSY (q90+)JPEG_BASELINE (q95)Real-time imaging characteristics
Ultrasound (video)HEVC (CRF 18)JPEG_BASELINE sequenceBandwidth efficiency
Pathology WSIJPEG_2000_LOSSLESSHEVCMicroscopy gigapixel data
Nuclear medicineRLEJPEG_2000_LOSSLESSLow-frequency SPECT/PET imagery
MammographyJPEG_2000_LOSSLESSJPEG_LSMandatory preservation of microcalcifications

3.9 Compression Thresholds and Quantitative Diagnostic Validation

The acceptability of lossy compression in clinical imaging must be quantitatively validated. DICOM WG-04 (the Compression Working Group) issues per-modality recommendations: CT permits 8:1 to 10:1 compression while preserving diagnostic accuracy above 99 per cent (per Royal College of Radiologists studies); MR tolerates 6:1 to 8:1 with no measurable clinical difference (per Canadian Association of Radiologists guidance); mammography is recommended to remain lossless to preserve microcalcifications; ultrasound permits 8:1 with Doppler data retained losslessly; and nuclear medicine permits 4:1 subject to verification that quantitative SUV measurements are unaffected.

PSNR ≥ 40 dB and SSIM ≥ 0.98 are widely cited acceptance thresholds for diagnostic-grade imagery. The simulator automatically computes both metrics whenever an ENUM is selected, allowing readers to relate textbook acceptance criteria to live numerical outputs.

"Lossy compression in medical imaging shall be permitted only within clinically validated compression ratio limits. For modalities where fine structures and low-contrast lesions are diagnostically critical — mammography and high-resolution CT in particular — lossless compression shall remain the principle." — DICOM WG-04, Compression Guidelines, 2024.

HEVC — A Next-Generation Standard for 4D Imaging and Video

HEVC (High Efficiency Video Coding, ISO/IEC 23008) achieves approximately 50 per cent better compression efficiency than its H.264/AVC predecessor. In medical imaging it has gained traction for 4D CT (a CT volume varying over time), real-time ultrasound cine loops, and angiographic cine series. The DICOM standard adopted HEVC as a formal Transfer Syntax in 2017 (UIDs 1.2.840.10008.1.2.4.107 through .109), supporting the Main, Main 10, and Lossless profiles.

In practical deployments HEVC delivers substantial storage and transmission savings, simultaneously enabling real-time remote consultation and large-scale archival. Several leading Korean teaching hospitals operate HEVC-based 4D CT archives that report storage cost reductions of approximately 60 per cent relative to legacy multi-frame encoding while preserving clinical quality.

3.10 Korean Edition Note (한국어판 안내)

The Korean edition (한국어판) extends this chapter with section §3.A on Korean compression regulatory infrastructure, including Article 22 of the Medical Service Act (preservation of medical records), Article 23 of the Personal Information Protection Act (sensitive health information), the Ministry of Health and Welfare Standard for Medical Image Data Preservation, and the Korean Society of Medical Informatics (KOSMI) Compression Recommendation. The K-PACS Standard, jointly published by MFDS and KOSMI in 2024, is also discussed in detail.

3.11 Compression Policy Governance

Compression policy in a hospital is rarely a single decision; it is a governance regime that integrates clinical, regulatory, and operational considerations. The radiology department typically chairs the policy committee, with representation from medical physics, PACS administration, information security, and information governance. The committee establishes per-modality compression rules, monitors compliance via PACS audit logs, and reviews the policy annually in light of evolving evidence and revised regulatory guidance.

A robust governance regime includes a written compression policy referencing primary sources, automated PACS rules that enforce the policy on inbound and outbound images, periodic audits of representative cases for diagnostic accuracy, and a documented exception-handling process for cases such as research, legal evidence, or non-standard external referrals.

Chapter 3 — Notes & References

  1. ISO/IEC 15444, JPEG 2000 Image Coding System Part 1, ISO/IEC JTC 1/SC 29, 2019.
  2. ISO/IEC 15444-10, JPEG 2000 Part 10: Extensions for Three-Dimensional Data (JP3D), 2011.
  3. ISO/IEC 14495, JPEG-LS Lossless and Near-Lossless Compression of Continuous-Tone Still Images, 2019.
  4. DICOM Standards Committee, DICOM PS3.5: Data Structures and Encoding, NEMA, 2024.
  5. DICOM WG-04, DICOM Compression Working Group Guidelines, NEMA, 2024.
  6. ISO/IEC 23008, HEVC High Efficiency Video Coding, ISO/IEC JTC 1/SC 29, 2020.
  7. Royal College of Radiologists, Guidance on the Use of Lossy Image Compression in Radiology, 2023.
  8. Canadian Association of Radiologists, CAR Standards for Irreversible Compression in Digital Diagnostic Imaging, 2024.
  9. Weinberger, M., et al., The LOCO-I Lossless Image Compression Algorithm, IEEE Transactions on Image Processing, 2000.
  10. Wang, Z., et al., Image Quality Assessment: From Error Visibility to Structural Similarity, IEEE Transactions on Image Processing, 2004.
  11. DICOM Working Group 04, Supplement on Compression of DICOM Objects, NEMA, 2024.
  12. Korean Society of Medical Informatics (KOSMI), Recommendation on Medical Image Compression Standards, 2024.
  13. Korea Ministry of Health and Welfare, Standard for Medical Image Data Preservation, MOHW Medical Information Policy Division, 2023.
  14. Korea MFDS and KOSMI joint publication, K-PACS Standard for Korean PACS Compression, 2024.
  15. WIA Standards Public Repository (medical-imaging folder), MIT License, GitHub: WIA-Official/wia-standards-public/tree/main/medical-imaging — open standard initiative providing source code for simulator, spec, API, and ebook assets cited throughout this volume; serves as the canonical verification record for all primary-source citations made by the WIA standard committee in this chapter. Canonical ENUM tokens used in this volume include CT, MRI, PET, SPECT, MAMMOGRAPHY, ULTRASOUND, XRAY, DICOM_3_0, NIFTI, NRRD, JPEG_BASELINE, JPEG_2000_LOSSLESS, HEVC, DICOMWEB, QIDO_RS, STOW_RS, WADO_RS, PACS, VNA, RIS, HIS, FDA_510K, CE_MDR, MFDS_CLASS_2, HIPAA, GDPR, DICOM_CONFORMANCE, RUL, RML, RLL, LUL, LLL, MEDIASTINUM, HL7_FHIR_IMAGING, IHE_RAD, NEMA_MITA, DICOM_SR, RADLEX, U_NET, V_NET, RESNET, VIT, TRANSFORMER, CNN, MONAI.