-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalueMultiplicity.html
More file actions
128 lines (114 loc) · 4.6 KB
/
valueMultiplicity.html
File metadata and controls
128 lines (114 loc) · 4.6 KB
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
<!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>DICOM Value Multiplicity Table</h2>
Value Multiplicity, or VM, is the number of values an attribute is expected to contain. The most common
is 1, but for example, when specifying a three-dimensional coordinate it makes sense to have 3, and a list
of specifying a three-dimensional coordinates should have a length that is a multiple of 3.
<p></p>
When showing Details, the VM is shown to the right of VR (Value Representation), as shown in the highlighted portion below:
<p></p>
<img style="margin-left:100px; border-style: solid; border-color:#008000;border-width:1px; border-radius:4px;" src='../ValueMultiplicity.png'/>
<p></p>
<table>
<tr> <th>Name</th> <th>Description</th> </tr>
<tr><td>0</td><td>Does not contain values (such as a Sequence)</td></tr>
<tr><td>1</td><td>Must have exactly one value</td></tr>
<tr><td>1-2</td><td>Can have one or two values</td></tr>
<tr><td>1-3</td><td>Can have from one to three values</td></tr>
<tr><td>1-32</td><td>Can have from one to 32 values</td></tr>
<tr><td>16</td><td>Must have exactly 16 values</td></tr>
<tr><td>1-8</td><td>Can have from one to 8 values</td></tr>
<tr><td>1-99</td><td>Can have from one to 99 values</td></tr>
<tr><td>1-N</td><td>Can have from one to any number of values</td></tr>
<tr><td>2</td><td>Must have exactly 2 values</td></tr>
<tr><td>2-2N</td><td>Can have from 2 to any even number of values</td></tr>
<tr><td>2-N</td><td>Can have from 2 to any number of values</td></tr>
<tr><td>3</td><td>Must have exactly 3 values (often used for 3D coordinates)</td></tr>
<tr><td>3-3N</td><td>Must have a at least 3 values up to any multiple of 3 values</td></tr>
<tr><td>3-N</td><td>Can have from 3 to any number of values</td></tr>
<tr><td>4</td><td>Must have exactly 4 values</td></tr>
<tr><td>6</td><td>Must have exactly 6 values</td></tr>
<tr><td>6-N</td><td>Can have from 6 to any number of values</td></tr>
<tr><td>9</td><td>Must have exactly 9 values</td></tr>
</table>
</div>
</div>
</body>
</html>