@@ -412,7 +412,18 @@ def b_vector(self):
412
412
class MultiframeWrapper (Wrapper ):
413
413
"""Wrapper for Enhanced MR Storage SOP Class
414
414
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>`_.
416
427
417
428
Attributes
418
429
----------
@@ -480,9 +491,12 @@ def image_shape(self):
480
491
481
492
References
482
493
----------
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
486
500
"""
487
501
rows , cols = self .get ('Rows' ), self .get ('Columns' )
488
502
if None in (rows , cols ):
0 commit comments