-
Notifications
You must be signed in to change notification settings - Fork 0
/
anonymizingFiles.html
150 lines (128 loc) · 4.74 KB
/
anonymizingFiles.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<title>DICOM+</title>
<link rel="stylesheet"
href="../../../bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet"
href="../../../bootstrap/3.3.6/css/bootstrap-theme.min.css" />
<script src="../../../jquery/1.11.3/jquery.min.js"></script>
<script src="../../../bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style>
body {
max-width: 1024px;
}
@media ( min-width : 768px) {
.sidebar-nav .navbar .navbar-collapse {
padding: 0;
max-height: none;
}
.sidebar-nav .navbar ul {
float: none;
display: block;
}
.sidebar-nav .navbar li {
float: none;
display: block;
}
.sidebar-nav .navbar li a {
padding-top: 12px;
padding-bottom: 12px;
}
}
</style>
</head>
<body>
<div style="margin-top: 20px;margin-bottom: 50px;" class="row">
<div class="col-md-3 col-md-offset-1">
<h1 class="fill">
<a href="index.html"> <img
src="../../../images/DICOM+.png" height="232"/>
</a>
</h1>
<div class="sidebar-nav">
<div class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".sidebar-navbar-collapse">
<span class="sr-only">Toggle navigation</span> <span
class="icon-bar"></span> <span class="icon-bar"></span> <span
class="icon-bar"></span>
</button>
<span class="visible-xs navbar-brand">Sidebar menu</span>
</div>
<div class="navbar-collapse collapse sidebar-navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Starting the
program</a></li>
<li><a href="main.html">Main Window Layout</a></li>
<li><a href="preview.html">Previewing Files</a></li>
<li><a href="anonymizingFiles.html">Anonymizing Files</a></li>
<li><a href="anonymizeOptions.html">Anonymize Options</a></li>
<li><a href="edit.html">Editing</a></li>
<li><a href="quickTips.html">Quick Start and Tips</a></li>
<li><a href="faq.html">Frequently Asked Questions</a></li>
<li><a href="commandLine.html">Running as a command line
program</a></li>
<!-- <li><a style="margin-left:40px;" href="preload.html">Saving and loading a session</a> TODO </li> -->
<li><a
href="http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#table_6.2-1" target="_blank">DICOM
Value Representations (from the DICOM standard)</a></li>
<li><a href="valueMultiplicity.html">DICOM Value
Multiplicity</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="col-md-8">
<h2>Anonymizing Files</h2>
Before anonymizing, first make sure that the application is in
anonymize mode using the <code>Anonymize</code> radio
button at the top left of the main window.
<p/>
<br/>
If a particular patient ID is desired, enter it in the <code>New Patient ID</code>
field. This field is initialized to a random value at startup. The pattern for
this is defined in the configuration file.
<p/>
<br/>
Be default, the patient name is set to the same value as the patient ID. If they
need to be different, click the checkbox to the right of the <code>New Patient Name</code>
field, which will enable the field and a different name to be entered.
<p/>
<br/>
To anonymize a series,
click the <code>Anonymize</code> button to the
right of the series. When complete, the green and white plus sign will
indicate that the series has been anonymized.
<p/>
<br/>
One of the features of the program is to properly handle the anonymization of UIDs
across files within a series and study.
<moreinfo
title='This is true for many uses, but in
particular for Radiotherapy where the
relationships and cross-references between
DICOM files is complex.'>(more info)</moreinfo>
After anonymization, the generated files will have new UIDs and the relationships
between files will be maintained, provided that the files were anonymized in the
same session.
<p/>
When files are anonymized, they are put in the <code>Destination</code> shown near the
top of the main screen. The destination may be changed by using the <code>Browse</code> button.
<p/>
If the <code>Destination</code> does not exist, it will be created as anonymization begins.
If you do not have permission to write files, then anonymization will fail.
Note that repeatedly anonymizations will create a new set of files on each invocation.
<p/>
An entire patient may be anonymized by clicking the <code>Anonymize Patient</code>
button in the uppor right hand corner of each patient's information.
<p/>
Multiple patients may be anonymized by clicking the <code>Anonymize All</code>
button at the bottom of the main window.
</div>
</div>
</body>
</html>