-
Notifications
You must be signed in to change notification settings - Fork 0
/
preview.html
131 lines (119 loc) · 4.4 KB
/
preview.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
<!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>Previewing Files</h2>
<p>
To preview a DICOM series, click the <code>Preview</code> button to
the right of the series. Previewing a file will not change it.
</p><p>
All DICOM files may be viewed in text mode, and those with images
may be viewed in image mode. Below is an annotated screen shot of
the image preview: <br></br>
<img src='../previewImage.png' width='837'>
<p/>
In text mode, the meta-data of the files is shown. Multi-valued
attributes have their list of values display with a separating '\'
between each value. DICOM sequences are shown with indenting to
reflect the hierarchy.
<p/>
Optionally, the <code>Details</code> checkbox may be checked, which
prefixes each attribute with the <br/>
<ul>
<li>group number</li>
<li>element number</li>
<li><a href='http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#table_6.2-1'>VR: Value Representation</a></li>
<li><a href='valueMultiplicity.html'>VM: Value Multiplicity</a></li>
</ul>
<p/>
The group and element numbers uniquely define the attribute.
The value representation indicates the type of value (string,
floating point, etc), and the value multiplicity indicates how
many values may be specified. For example, a value multiplicity of <code>1</code>
indicates that the attribute must have exactly one value, and a value multiplicity of <code>1-N</code>
indicates that the attribute must have one or more values.
See <a href='http://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#table_6.2-1'>Value Representations</a>
and <a href='valueMultiplicity.html'>Value Multiplicity</a> for details.
<p/>
Below is an annotated screen capture of the text previewer:
<p/>
<img src='../previewText.png' width='837' id='PreviewText'>
</div>
</div>
</body>
</html>