Skip to content

Commit ee0d899

Browse files
committed
DOC: add more links on DICOM multi-frame
More links to sections and diagrams on multi-frame / enhanced MR image IOP.
1 parent b3bfcec commit ee0d899

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

nibabel/nicom/dicomwrappers.py

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,18 @@ def b_vector(self):
412412
class MultiframeWrapper(Wrapper):
413413
"""Wrapper for Enhanced MR Storage SOP Class
414414
415-
tested with Philips' Enhanced DICOM implementation
415+
Tested with Philips' Enhanced DICOM implementation.
416+
417+
The specification for the Enhanced MR image IOP / SOP began life as `DICOM
418+
supplement 49 <ftp://medical.nema.org/medical/dicom/final/sup49_ft.pdf>`_,
419+
but as of 2016 it is part of the standard. In particular see:
420+
421+
* `A.36 Enhanced MR Information Object Definitions
422+
<http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_A.36>`_;
423+
* `C.7.6.16 Multi-Frame Functional Groups Module
424+
<http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.16>`_;
425+
* `C.7.6.17 Multi-Frame Dimension Module
426+
<http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.17>`_.
416427
417428
Attributes
418429
----------
@@ -480,9 +491,12 @@ def image_shape(self):
480491
481492
References
482493
----------
483-
484-
* C.7.6.16 Multi-Frame Functional Groups Module: http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.16
485-
* C.7.6.17 Multi-Frame Dimension Module: http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.17
494+
* C.7.6.16 Multi-Frame Functional Groups Module:
495+
http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.16
496+
* C.7.6.17 Multi-Frame Dimension Module:
497+
http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#sect_C.7.6.17
498+
* Diagram of DimensionIndexSequence and DimensionIndexValues:
499+
http://dicom.nema.org/medical/dicom/current/output/pdf/part03.pdf#figure_C.7.6.17-1
486500
"""
487501
rows, cols = self.get('Rows'), self.get('Columns')
488502
if None in (rows, cols):

0 commit comments

Comments
 (0)