1Dicom(3) User Contributed Perl Documentation Dicom(3)
2
3
4
6 PDL::IO::Dicom - a module for reading DICOM images.
7
9 The PDL::IO::Dicom module enables reading 16-bit gray level Dicom
10 images into PDL. As Dicom is an extremely complex format, this module
11 can unfortunately not handle all different image types included in the
12 DICOM standard. One common format that is currently not supported is
13 the Papyrus format.
14
16 use PDL;
17 use PDL::IO::Dicom;
18
19 $img = rdcm("image.dcm");
20
22 Copyright (C) Dov Grobgeld <dov@imagic.weizmann.ac.il> 2002. All
23 rights reserved. There is no warranty. You are allowed to redistribute
24 this software / documentation under certain conditions. For details,
25 see the file COPYING in the PDL distribution. If this file is separated
26 from the PDL distribution, the copyright notice should be included in
27 the file.
28
30 rdcm
31 Read a dicom image.
32
33 $dcm = rdcm("filename")
34
36 Copyright (C) Dov Grobgeld <dov@imagic.weizmann.ac.il> 1997. All
37 rights reserved. There is no warranty. You are allowed to redistribute
38 this software / documentation under certain conditions. For details,
39 see the file COPYING in the PDL distribution. If this file is separated
40 from the PDL distribution, the copyright notice should be included in
41 the file.
42
43
44
45perl v5.30.2 2020-04-02 Dicom(3)