| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Task::Dicom; |
|
2
|
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
131662
|
use strict; |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
80
|
|
|
4
|
2
|
|
|
2
|
|
14
|
use warnings; |
|
|
2
|
|
|
|
|
3
|
|
|
|
2
|
|
|
|
|
152
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = 0.08; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
__END__ |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=pod |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=encoding utf8 |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Task::Dicom - Install the Dicom modules. |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
cpanm Task::Dicom |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=over |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=item L<DicomPack::DB::DicomTagDict> |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Dicom Data Dictionary |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=item L<DicomPack::DB::DicomVRDict> |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Dicom Data Structure and Encoding |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=item L<DicomPack::IO::DicomReader> |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
A module to read Dicom Files |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item L<DicomPack::IO::DicomWriter> |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
A module to create a dicom file from dicom... |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item L<DicomPack::Util::DicomAnonymizer> |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
A module to anonymize Dicom files |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=item L<DicomPack::Util::DicomDumper> |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
dump the content of a dicom file to stdout |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item L<Dicom::DCMTK::DCMDump::Get> |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Perl Class for getting DICOM DCMTK dcmdump output for DICOM file. |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=item L<Dicom::DCMTK::DCMQRSCP::Config> |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Perl class for reading/writing DCMTK dcmqrscp configuration file. |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item L<Dicom::File::Detect> |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Detect DICOM file through magic string. |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=item L<Dicom::UID::Generator> |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
DICOM UID generator. |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=item L<File::Find::Rule::Dicom> |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Common rules for searching for DICOM things. |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=back |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head1 REPOSITORY |
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
L<https://github.com/michal-josef-spacek/Task-Dicom> |
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 AUTHOR |
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Michal Josef Špaček L<mailto:skim@cpan.org> |
|
81
|
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
L<http://skim.cz> |
|
83
|
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
© 2015-2023 Michal Josef Špaček |
|
87
|
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
BSD 2-Clause License |
|
89
|
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 VERSION |
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
0.08 |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=cut |