cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % DDDD CCCC M M % |
| 7 | % D D C MM MM % |
| 8 | % D D C M M M % |
| 9 | % D D C M M % |
| 10 | % DDDD CCCC M M % |
| 11 | % % |
| 12 | % % |
| 13 | % Read DICOM Image Format % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % John Cristy % |
| 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
cristy | 16af1cb | 2009-12-11 21:38:29 +0000 | [diff] [blame] | 20 | % Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 21 | % dedicated to making software imaging solutions freely available. % |
| 22 | % % |
| 23 | % You may not use this file except in compliance with the License. You may % |
| 24 | % obtain a copy of the License at % |
| 25 | % % |
| 26 | % http://www.imagemagick.org/script/license.php % |
| 27 | % % |
| 28 | % Unless required by applicable law or agreed to in writing, software % |
| 29 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 30 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 31 | % See the License for the specific language governing permissions and % |
| 32 | % limitations under the License. % |
| 33 | % % |
| 34 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 35 | % |
| 36 | % |
| 37 | */ |
| 38 | |
| 39 | /* |
| 40 | Include declarations. |
| 41 | */ |
| 42 | #include "magick/studio.h" |
| 43 | #include "magick/property.h" |
| 44 | #include "magick/blob.h" |
| 45 | #include "magick/blob-private.h" |
| 46 | #include "magick/cache.h" |
| 47 | #include "magick/color.h" |
cristy | 316d517 | 2009-09-17 19:31:25 +0000 | [diff] [blame] | 48 | #include "magick/colormap-private.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 49 | #include "magick/color-private.h" |
| 50 | #include "magick/constitute.h" |
| 51 | #include "magick/enhance.h" |
| 52 | #include "magick/exception.h" |
| 53 | #include "magick/exception-private.h" |
| 54 | #include "magick/image.h" |
| 55 | #include "magick/image-private.h" |
| 56 | #include "magick/list.h" |
| 57 | #include "magick/magick.h" |
| 58 | #include "magick/memory_.h" |
| 59 | #include "magick/monitor.h" |
| 60 | #include "magick/monitor-private.h" |
| 61 | #include "magick/option.h" |
| 62 | #include "magick/resource_.h" |
| 63 | #include "magick/quantum-private.h" |
| 64 | #include "magick/static.h" |
| 65 | #include "magick/string_.h" |
cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 66 | #include "magick/string-private.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 67 | #include "magick/module.h" |
| 68 | |
| 69 | /* |
| 70 | Dicom medical image declarations. |
| 71 | */ |
| 72 | |
| 73 | typedef struct _DicomInfo |
| 74 | { |
| 75 | unsigned short |
| 76 | group, |
| 77 | element; |
| 78 | |
| 79 | const char |
| 80 | *vr, |
| 81 | *description; |
| 82 | } DicomInfo; |
| 83 | |
| 84 | static const DicomInfo |
| 85 | dicom_info[] = |
| 86 | { |
| 87 | { 0x0000, 0x0000, "UL", "Group Length" }, |
| 88 | { 0x0000, 0x0001, "UL", "Command Length to End" }, |
| 89 | { 0x0000, 0x0002, "UI", "Affected SOP Class UID" }, |
| 90 | { 0x0000, 0x0003, "UI", "Requested SOP Class UID" }, |
| 91 | { 0x0000, 0x0010, "LO", "Command Recognition Code" }, |
| 92 | { 0x0000, 0x0100, "US", "Command Field" }, |
| 93 | { 0x0000, 0x0110, "US", "Message ID" }, |
| 94 | { 0x0000, 0x0120, "US", "Message ID Being Responded To" }, |
| 95 | { 0x0000, 0x0200, "AE", "Initiator" }, |
| 96 | { 0x0000, 0x0300, "AE", "Receiver" }, |
| 97 | { 0x0000, 0x0400, "AE", "Find Location" }, |
| 98 | { 0x0000, 0x0600, "AE", "Move Destination" }, |
| 99 | { 0x0000, 0x0700, "US", "Priority" }, |
| 100 | { 0x0000, 0x0800, "US", "Data Set Type" }, |
| 101 | { 0x0000, 0x0850, "US", "Number of Matches" }, |
| 102 | { 0x0000, 0x0860, "US", "Response Sequence Number" }, |
| 103 | { 0x0000, 0x0900, "US", "Status" }, |
| 104 | { 0x0000, 0x0901, "AT", "Offending Element" }, |
| 105 | { 0x0000, 0x0902, "LO", "Exception Comment" }, |
| 106 | { 0x0000, 0x0903, "US", "Exception ID" }, |
| 107 | { 0x0000, 0x1000, "UI", "Affected SOP Instance UID" }, |
| 108 | { 0x0000, 0x1001, "UI", "Requested SOP Instance UID" }, |
| 109 | { 0x0000, 0x1002, "US", "Event Type ID" }, |
| 110 | { 0x0000, 0x1005, "AT", "Attribute Identifier List" }, |
| 111 | { 0x0000, 0x1008, "US", "Action Type ID" }, |
| 112 | { 0x0000, 0x1020, "US", "Number of Remaining Suboperations" }, |
| 113 | { 0x0000, 0x1021, "US", "Number of Completed Suboperations" }, |
| 114 | { 0x0000, 0x1022, "US", "Number of Failed Suboperations" }, |
| 115 | { 0x0000, 0x1023, "US", "Number of Warning Suboperations" }, |
| 116 | { 0x0000, 0x1030, "AE", "Move Originator Application Entity Title" }, |
| 117 | { 0x0000, 0x1031, "US", "Move Originator Message ID" }, |
| 118 | { 0x0000, 0x4000, "LO", "Dialog Receiver" }, |
| 119 | { 0x0000, 0x4010, "LO", "Terminal Type" }, |
| 120 | { 0x0000, 0x5010, "SH", "Message Set ID" }, |
| 121 | { 0x0000, 0x5020, "SH", "End Message Set" }, |
| 122 | { 0x0000, 0x5110, "LO", "Display Format" }, |
| 123 | { 0x0000, 0x5120, "LO", "Page Position ID" }, |
| 124 | { 0x0000, 0x5130, "LO", "Text Format ID" }, |
| 125 | { 0x0000, 0x5140, "LO", "Normal Reverse" }, |
| 126 | { 0x0000, 0x5150, "LO", "Add Gray Scale" }, |
| 127 | { 0x0000, 0x5160, "LO", "Borders" }, |
| 128 | { 0x0000, 0x5170, "IS", "Copies" }, |
| 129 | { 0x0000, 0x5180, "LO", "OldMagnificationType" }, |
| 130 | { 0x0000, 0x5190, "LO", "Erase" }, |
| 131 | { 0x0000, 0x51a0, "LO", "Print" }, |
| 132 | { 0x0000, 0x51b0, "US", "Overlays" }, |
| 133 | { 0x0002, 0x0000, "UL", "Meta Element Group Length" }, |
| 134 | { 0x0002, 0x0001, "OB", "File Meta Information Version" }, |
| 135 | { 0x0002, 0x0002, "UI", "Media Storage SOP Class UID" }, |
| 136 | { 0x0002, 0x0003, "UI", "Media Storage SOP Instance UID" }, |
| 137 | { 0x0002, 0x0010, "UI", "Transfer Syntax UID" }, |
| 138 | { 0x0002, 0x0012, "UI", "Implementation Class UID" }, |
| 139 | { 0x0002, 0x0013, "SH", "Implementation Version Name" }, |
| 140 | { 0x0002, 0x0016, "AE", "Source Application Entity Title" }, |
| 141 | { 0x0002, 0x0100, "UI", "Private Information Creator UID" }, |
| 142 | { 0x0002, 0x0102, "OB", "Private Information" }, |
| 143 | { 0x0003, 0x0000, "US", "?" }, |
| 144 | { 0x0003, 0x0008, "US", "ISI Command Field" }, |
| 145 | { 0x0003, 0x0011, "US", "Attach ID Application Code" }, |
| 146 | { 0x0003, 0x0012, "UL", "Attach ID Message Count" }, |
| 147 | { 0x0003, 0x0013, "DA", "Attach ID Date" }, |
| 148 | { 0x0003, 0x0014, "TM", "Attach ID Time" }, |
| 149 | { 0x0003, 0x0020, "US", "Message Type" }, |
| 150 | { 0x0003, 0x0030, "DA", "Max Waiting Date" }, |
| 151 | { 0x0003, 0x0031, "TM", "Max Waiting Time" }, |
| 152 | { 0x0004, 0x0000, "UL", "File Set Group Length" }, |
| 153 | { 0x0004, 0x1130, "CS", "File Set ID" }, |
| 154 | { 0x0004, 0x1141, "CS", "File Set Descriptor File ID" }, |
| 155 | { 0x0004, 0x1142, "CS", "File Set Descriptor File Specific Character Set" }, |
| 156 | { 0x0004, 0x1200, "UL", "Root Directory Entity First Directory Record Offset" }, |
| 157 | { 0x0004, 0x1202, "UL", "Root Directory Entity Last Directory Record Offset" }, |
| 158 | { 0x0004, 0x1212, "US", "File Set Consistency Flag" }, |
| 159 | { 0x0004, 0x1220, "SQ", "Directory Record Sequence" }, |
| 160 | { 0x0004, 0x1400, "UL", "Next Directory Record Offset" }, |
| 161 | { 0x0004, 0x1410, "US", "Record In Use Flag" }, |
| 162 | { 0x0004, 0x1420, "UL", "Referenced Lower Level Directory Entity Offset" }, |
| 163 | { 0x0004, 0x1430, "CS", "Directory Record Type" }, |
| 164 | { 0x0004, 0x1432, "UI", "Private Record UID" }, |
| 165 | { 0x0004, 0x1500, "CS", "Referenced File ID" }, |
| 166 | { 0x0004, 0x1504, "UL", "MRDR Directory Record Offset" }, |
| 167 | { 0x0004, 0x1510, "UI", "Referenced SOP Class UID In File" }, |
| 168 | { 0x0004, 0x1511, "UI", "Referenced SOP Instance UID In File" }, |
| 169 | { 0x0004, 0x1512, "UI", "Referenced Transfer Syntax UID In File" }, |
| 170 | { 0x0004, 0x1600, "UL", "Number of References" }, |
| 171 | { 0x0005, 0x0000, "US", "?" }, |
| 172 | { 0x0006, 0x0000, "US", "?" }, |
| 173 | { 0x0008, 0x0000, "UL", "Identifying Group Length" }, |
| 174 | { 0x0008, 0x0001, "UL", "Length to End" }, |
| 175 | { 0x0008, 0x0005, "CS", "Specific Character Set" }, |
| 176 | { 0x0008, 0x0008, "CS", "Image Type" }, |
| 177 | { 0x0008, 0x0010, "LO", "Recognition Code" }, |
| 178 | { 0x0008, 0x0012, "DA", "Instance Creation Date" }, |
| 179 | { 0x0008, 0x0013, "TM", "Instance Creation Time" }, |
| 180 | { 0x0008, 0x0014, "UI", "Instance Creator UID" }, |
| 181 | { 0x0008, 0x0016, "UI", "SOP Class UID" }, |
| 182 | { 0x0008, 0x0018, "UI", "SOP Instance UID" }, |
| 183 | { 0x0008, 0x0020, "DA", "Study Date" }, |
| 184 | { 0x0008, 0x0021, "DA", "Series Date" }, |
| 185 | { 0x0008, 0x0022, "DA", "Acquisition Date" }, |
| 186 | { 0x0008, 0x0023, "DA", "Image Date" }, |
| 187 | { 0x0008, 0x0024, "DA", "Overlay Date" }, |
| 188 | { 0x0008, 0x0025, "DA", "Curve Date" }, |
| 189 | { 0x0008, 0x0030, "TM", "Study Time" }, |
| 190 | { 0x0008, 0x0031, "TM", "Series Time" }, |
| 191 | { 0x0008, 0x0032, "TM", "Acquisition Time" }, |
| 192 | { 0x0008, 0x0033, "TM", "Image Time" }, |
| 193 | { 0x0008, 0x0034, "TM", "Overlay Time" }, |
| 194 | { 0x0008, 0x0035, "TM", "Curve Time" }, |
| 195 | { 0x0008, 0x0040, "xs", "Old Data Set Type" }, |
| 196 | { 0x0008, 0x0041, "xs", "Old Data Set Subtype" }, |
| 197 | { 0x0008, 0x0042, "CS", "Nuclear Medicine Series Type" }, |
| 198 | { 0x0008, 0x0050, "SH", "Accession Number" }, |
| 199 | { 0x0008, 0x0052, "CS", "Query/Retrieve Level" }, |
| 200 | { 0x0008, 0x0054, "AE", "Retrieve AE Title" }, |
| 201 | { 0x0008, 0x0058, "UI", "Failed SOP Instance UID List" }, |
| 202 | { 0x0008, 0x0060, "CS", "Modality" }, |
| 203 | { 0x0008, 0x0062, "SQ", "Modality Subtype" }, |
| 204 | { 0x0008, 0x0064, "CS", "Conversion Type" }, |
| 205 | { 0x0008, 0x0068, "CS", "Presentation Intent Type" }, |
| 206 | { 0x0008, 0x0070, "LO", "Manufacturer" }, |
| 207 | { 0x0008, 0x0080, "LO", "Institution Name" }, |
| 208 | { 0x0008, 0x0081, "ST", "Institution Address" }, |
| 209 | { 0x0008, 0x0082, "SQ", "Institution Code Sequence" }, |
| 210 | { 0x0008, 0x0090, "PN", "Referring Physician's Name" }, |
| 211 | { 0x0008, 0x0092, "ST", "Referring Physician's Address" }, |
| 212 | { 0x0008, 0x0094, "SH", "Referring Physician's Telephone Numbers" }, |
| 213 | { 0x0008, 0x0100, "SH", "Code Value" }, |
| 214 | { 0x0008, 0x0102, "SH", "Coding Scheme Designator" }, |
| 215 | { 0x0008, 0x0103, "SH", "Coding Scheme Version" }, |
| 216 | { 0x0008, 0x0104, "LO", "Code Meaning" }, |
| 217 | { 0x0008, 0x0105, "CS", "Mapping Resource" }, |
| 218 | { 0x0008, 0x0106, "DT", "Context Group Version" }, |
| 219 | { 0x0008, 0x010b, "CS", "Code Set Extension Flag" }, |
| 220 | { 0x0008, 0x010c, "UI", "Private Coding Scheme Creator UID" }, |
| 221 | { 0x0008, 0x010d, "UI", "Code Set Extension Creator UID" }, |
| 222 | { 0x0008, 0x010f, "CS", "Context Identifier" }, |
| 223 | { 0x0008, 0x1000, "LT", "Network ID" }, |
| 224 | { 0x0008, 0x1010, "SH", "Station Name" }, |
| 225 | { 0x0008, 0x1030, "LO", "Study Description" }, |
| 226 | { 0x0008, 0x1032, "SQ", "Procedure Code Sequence" }, |
| 227 | { 0x0008, 0x103e, "LO", "Series Description" }, |
| 228 | { 0x0008, 0x1040, "LO", "Institutional Department Name" }, |
| 229 | { 0x0008, 0x1048, "PN", "Physician of Record" }, |
| 230 | { 0x0008, 0x1050, "PN", "Performing Physician's Name" }, |
| 231 | { 0x0008, 0x1060, "PN", "Name of Physician(s) Reading Study" }, |
| 232 | { 0x0008, 0x1070, "PN", "Operator's Name" }, |
| 233 | { 0x0008, 0x1080, "LO", "Admitting Diagnosis Description" }, |
| 234 | { 0x0008, 0x1084, "SQ", "Admitting Diagnosis Code Sequence" }, |
| 235 | { 0x0008, 0x1090, "LO", "Manufacturer's Model Name" }, |
| 236 | { 0x0008, 0x1100, "SQ", "Referenced Results Sequence" }, |
| 237 | { 0x0008, 0x1110, "SQ", "Referenced Study Sequence" }, |
| 238 | { 0x0008, 0x1111, "SQ", "Referenced Study Component Sequence" }, |
| 239 | { 0x0008, 0x1115, "SQ", "Referenced Series Sequence" }, |
| 240 | { 0x0008, 0x1120, "SQ", "Referenced Patient Sequence" }, |
| 241 | { 0x0008, 0x1125, "SQ", "Referenced Visit Sequence" }, |
| 242 | { 0x0008, 0x1130, "SQ", "Referenced Overlay Sequence" }, |
| 243 | { 0x0008, 0x1140, "SQ", "Referenced Image Sequence" }, |
| 244 | { 0x0008, 0x1145, "SQ", "Referenced Curve Sequence" }, |
| 245 | { 0x0008, 0x1148, "SQ", "Referenced Previous Waveform" }, |
| 246 | { 0x0008, 0x114a, "SQ", "Referenced Simultaneous Waveforms" }, |
| 247 | { 0x0008, 0x114c, "SQ", "Referenced Subsequent Waveform" }, |
| 248 | { 0x0008, 0x1150, "UI", "Referenced SOP Class UID" }, |
| 249 | { 0x0008, 0x1155, "UI", "Referenced SOP Instance UID" }, |
| 250 | { 0x0008, 0x1160, "IS", "Referenced Frame Number" }, |
| 251 | { 0x0008, 0x1195, "UI", "Transaction UID" }, |
| 252 | { 0x0008, 0x1197, "US", "Failure Reason" }, |
| 253 | { 0x0008, 0x1198, "SQ", "Failed SOP Sequence" }, |
| 254 | { 0x0008, 0x1199, "SQ", "Referenced SOP Sequence" }, |
| 255 | { 0x0008, 0x2110, "CS", "Old Lossy Image Compression" }, |
| 256 | { 0x0008, 0x2111, "ST", "Derivation Description" }, |
| 257 | { 0x0008, 0x2112, "SQ", "Source Image Sequence" }, |
| 258 | { 0x0008, 0x2120, "SH", "Stage Name" }, |
| 259 | { 0x0008, 0x2122, "IS", "Stage Number" }, |
| 260 | { 0x0008, 0x2124, "IS", "Number of Stages" }, |
| 261 | { 0x0008, 0x2128, "IS", "View Number" }, |
| 262 | { 0x0008, 0x2129, "IS", "Number of Event Timers" }, |
| 263 | { 0x0008, 0x212a, "IS", "Number of Views in Stage" }, |
| 264 | { 0x0008, 0x2130, "DS", "Event Elapsed Time(s)" }, |
| 265 | { 0x0008, 0x2132, "LO", "Event Timer Name(s)" }, |
| 266 | { 0x0008, 0x2142, "IS", "Start Trim" }, |
| 267 | { 0x0008, 0x2143, "IS", "Stop Trim" }, |
| 268 | { 0x0008, 0x2144, "IS", "Recommended Display Frame Rate" }, |
| 269 | { 0x0008, 0x2200, "CS", "Transducer Position" }, |
| 270 | { 0x0008, 0x2204, "CS", "Transducer Orientation" }, |
| 271 | { 0x0008, 0x2208, "CS", "Anatomic Structure" }, |
| 272 | { 0x0008, 0x2218, "SQ", "Anatomic Region Sequence" }, |
| 273 | { 0x0008, 0x2220, "SQ", "Anatomic Region Modifier Sequence" }, |
| 274 | { 0x0008, 0x2228, "SQ", "Primary Anatomic Structure Sequence" }, |
| 275 | { 0x0008, 0x2230, "SQ", "Primary Anatomic Structure Modifier Sequence" }, |
| 276 | { 0x0008, 0x2240, "SQ", "Transducer Position Sequence" }, |
| 277 | { 0x0008, 0x2242, "SQ", "Transducer Position Modifier Sequence" }, |
| 278 | { 0x0008, 0x2244, "SQ", "Transducer Orientation Sequence" }, |
| 279 | { 0x0008, 0x2246, "SQ", "Transducer Orientation Modifier Sequence" }, |
| 280 | { 0x0008, 0x2251, "SQ", "Anatomic Structure Space Or Region Code Sequence" }, |
| 281 | { 0x0008, 0x2253, "SQ", "Anatomic Portal Of Entrance Code Sequence" }, |
| 282 | { 0x0008, 0x2255, "SQ", "Anatomic Approach Direction Code Sequence" }, |
| 283 | { 0x0008, 0x2256, "ST", "Anatomic Perspective Description" }, |
| 284 | { 0x0008, 0x2257, "SQ", "Anatomic Perspective Code Sequence" }, |
| 285 | { 0x0008, 0x2258, "ST", "Anatomic Location Of Examining Instrument Description" }, |
| 286 | { 0x0008, 0x2259, "SQ", "Anatomic Location Of Examining Instrument Code Sequence" }, |
| 287 | { 0x0008, 0x225a, "SQ", "Anatomic Structure Space Or Region Modifier Code Sequence" }, |
| 288 | { 0x0008, 0x225c, "SQ", "OnAxis Background Anatomic Structure Code Sequence" }, |
| 289 | { 0x0008, 0x4000, "LT", "Identifying Comments" }, |
| 290 | { 0x0009, 0x0000, "xs", "?" }, |
| 291 | { 0x0009, 0x0001, "xs", "?" }, |
| 292 | { 0x0009, 0x0002, "xs", "?" }, |
| 293 | { 0x0009, 0x0003, "xs", "?" }, |
| 294 | { 0x0009, 0x0004, "xs", "?" }, |
| 295 | { 0x0009, 0x0005, "UN", "?" }, |
| 296 | { 0x0009, 0x0006, "UN", "?" }, |
| 297 | { 0x0009, 0x0007, "UN", "?" }, |
| 298 | { 0x0009, 0x0008, "xs", "?" }, |
| 299 | { 0x0009, 0x0009, "LT", "?" }, |
| 300 | { 0x0009, 0x000a, "IS", "?" }, |
| 301 | { 0x0009, 0x000b, "IS", "?" }, |
| 302 | { 0x0009, 0x000c, "IS", "?" }, |
| 303 | { 0x0009, 0x000d, "IS", "?" }, |
| 304 | { 0x0009, 0x000e, "IS", "?" }, |
| 305 | { 0x0009, 0x000f, "UN", "?" }, |
| 306 | { 0x0009, 0x0010, "xs", "?" }, |
| 307 | { 0x0009, 0x0011, "xs", "?" }, |
| 308 | { 0x0009, 0x0012, "xs", "?" }, |
| 309 | { 0x0009, 0x0013, "xs", "?" }, |
| 310 | { 0x0009, 0x0014, "xs", "?" }, |
| 311 | { 0x0009, 0x0015, "xs", "?" }, |
| 312 | { 0x0009, 0x0016, "xs", "?" }, |
| 313 | { 0x0009, 0x0017, "LT", "?" }, |
| 314 | { 0x0009, 0x0018, "LT", "Data Set Identifier" }, |
| 315 | { 0x0009, 0x001a, "US", "?" }, |
| 316 | { 0x0009, 0x001e, "UI", "?" }, |
| 317 | { 0x0009, 0x0020, "xs", "?" }, |
| 318 | { 0x0009, 0x0021, "xs", "?" }, |
| 319 | { 0x0009, 0x0022, "SH", "User Orientation" }, |
| 320 | { 0x0009, 0x0023, "SL", "Initiation Type" }, |
| 321 | { 0x0009, 0x0024, "xs", "?" }, |
| 322 | { 0x0009, 0x0025, "xs", "?" }, |
| 323 | { 0x0009, 0x0026, "xs", "?" }, |
| 324 | { 0x0009, 0x0027, "xs", "?" }, |
| 325 | { 0x0009, 0x0029, "xs", "?" }, |
| 326 | { 0x0009, 0x002a, "SL", "?" }, |
| 327 | { 0x0009, 0x002c, "LO", "Series Comments" }, |
| 328 | { 0x0009, 0x002d, "SL", "Track Beat Average" }, |
| 329 | { 0x0009, 0x002e, "FD", "Distance Prescribed" }, |
| 330 | { 0x0009, 0x002f, "LT", "?" }, |
| 331 | { 0x0009, 0x0030, "xs", "?" }, |
| 332 | { 0x0009, 0x0031, "xs", "?" }, |
| 333 | { 0x0009, 0x0032, "LT", "?" }, |
| 334 | { 0x0009, 0x0034, "xs", "?" }, |
| 335 | { 0x0009, 0x0035, "SL", "Gantry Locus Type" }, |
| 336 | { 0x0009, 0x0037, "SL", "Starting Heart Rate" }, |
| 337 | { 0x0009, 0x0038, "xs", "?" }, |
| 338 | { 0x0009, 0x0039, "SL", "RR Window Offset" }, |
| 339 | { 0x0009, 0x003a, "SL", "Percent Cycle Imaged" }, |
| 340 | { 0x0009, 0x003e, "US", "?" }, |
| 341 | { 0x0009, 0x003f, "US", "?" }, |
| 342 | { 0x0009, 0x0040, "xs", "?" }, |
| 343 | { 0x0009, 0x0041, "xs", "?" }, |
| 344 | { 0x0009, 0x0042, "xs", "?" }, |
| 345 | { 0x0009, 0x0043, "xs", "?" }, |
| 346 | { 0x0009, 0x0050, "LT", "?" }, |
| 347 | { 0x0009, 0x0051, "xs", "?" }, |
| 348 | { 0x0009, 0x0060, "LT", "?" }, |
| 349 | { 0x0009, 0x0061, "LT", "Series Unique Identifier" }, |
| 350 | { 0x0009, 0x0070, "LT", "?" }, |
| 351 | { 0x0009, 0x0080, "LT", "?" }, |
| 352 | { 0x0009, 0x0091, "LT", "?" }, |
| 353 | { 0x0009, 0x00e2, "LT", "?" }, |
| 354 | { 0x0009, 0x00e3, "UI", "Equipment UID" }, |
| 355 | { 0x0009, 0x00e6, "SH", "Genesis Version Now" }, |
| 356 | { 0x0009, 0x00e7, "UL", "Exam Record Checksum" }, |
| 357 | { 0x0009, 0x00e8, "UL", "?" }, |
| 358 | { 0x0009, 0x00e9, "SL", "Actual Series Data Time Stamp" }, |
| 359 | { 0x0009, 0x00f2, "UN", "?" }, |
| 360 | { 0x0009, 0x00f3, "UN", "?" }, |
| 361 | { 0x0009, 0x00f4, "LT", "?" }, |
| 362 | { 0x0009, 0x00f5, "xs", "?" }, |
| 363 | { 0x0009, 0x00f6, "LT", "PDM Data Object Type Extension" }, |
| 364 | { 0x0009, 0x00f8, "US", "?" }, |
| 365 | { 0x0009, 0x00fb, "IS", "?" }, |
| 366 | { 0x0009, 0x1002, "OB", "?" }, |
| 367 | { 0x0009, 0x1003, "OB", "?" }, |
| 368 | { 0x0009, 0x1010, "UN", "?" }, |
| 369 | { 0x0010, 0x0000, "UL", "Patient Group Length" }, |
| 370 | { 0x0010, 0x0010, "PN", "Patient's Name" }, |
| 371 | { 0x0010, 0x0020, "LO", "Patient's ID" }, |
| 372 | { 0x0010, 0x0021, "LO", "Issuer of Patient's ID" }, |
| 373 | { 0x0010, 0x0030, "DA", "Patient's Birth Date" }, |
| 374 | { 0x0010, 0x0032, "TM", "Patient's Birth Time" }, |
| 375 | { 0x0010, 0x0040, "CS", "Patient's Sex" }, |
| 376 | { 0x0010, 0x0050, "SQ", "Patient's Insurance Plan Code Sequence" }, |
| 377 | { 0x0010, 0x1000, "LO", "Other Patient's ID's" }, |
| 378 | { 0x0010, 0x1001, "PN", "Other Patient's Names" }, |
| 379 | { 0x0010, 0x1005, "PN", "Patient's Birth Name" }, |
| 380 | { 0x0010, 0x1010, "AS", "Patient's Age" }, |
| 381 | { 0x0010, 0x1020, "DS", "Patient's Size" }, |
| 382 | { 0x0010, 0x1030, "DS", "Patient's Weight" }, |
| 383 | { 0x0010, 0x1040, "LO", "Patient's Address" }, |
| 384 | { 0x0010, 0x1050, "LT", "Insurance Plan Identification" }, |
| 385 | { 0x0010, 0x1060, "PN", "Patient's Mother's Birth Name" }, |
| 386 | { 0x0010, 0x1080, "LO", "Military Rank" }, |
| 387 | { 0x0010, 0x1081, "LO", "Branch of Service" }, |
| 388 | { 0x0010, 0x1090, "LO", "Medical Record Locator" }, |
| 389 | { 0x0010, 0x2000, "LO", "Medical Alerts" }, |
| 390 | { 0x0010, 0x2110, "LO", "Contrast Allergies" }, |
| 391 | { 0x0010, 0x2150, "LO", "Country of Residence" }, |
| 392 | { 0x0010, 0x2152, "LO", "Region of Residence" }, |
| 393 | { 0x0010, 0x2154, "SH", "Patients Telephone Numbers" }, |
| 394 | { 0x0010, 0x2160, "SH", "Ethnic Group" }, |
| 395 | { 0x0010, 0x2180, "SH", "Occupation" }, |
| 396 | { 0x0010, 0x21a0, "CS", "Smoking Status" }, |
| 397 | { 0x0010, 0x21b0, "LT", "Additional Patient History" }, |
| 398 | { 0x0010, 0x21c0, "US", "Pregnancy Status" }, |
| 399 | { 0x0010, 0x21d0, "DA", "Last Menstrual Date" }, |
| 400 | { 0x0010, 0x21f0, "LO", "Patients Religious Preference" }, |
| 401 | { 0x0010, 0x4000, "LT", "Patient Comments" }, |
| 402 | { 0x0011, 0x0001, "xs", "?" }, |
| 403 | { 0x0011, 0x0002, "US", "?" }, |
| 404 | { 0x0011, 0x0003, "LT", "Patient UID" }, |
| 405 | { 0x0011, 0x0004, "LT", "Patient ID" }, |
| 406 | { 0x0011, 0x000a, "xs", "?" }, |
| 407 | { 0x0011, 0x000b, "SL", "Effective Series Duration" }, |
| 408 | { 0x0011, 0x000c, "SL", "Num Beats" }, |
| 409 | { 0x0011, 0x000d, "LO", "Radio Nuclide Name" }, |
| 410 | { 0x0011, 0x0010, "xs", "?" }, |
| 411 | { 0x0011, 0x0011, "xs", "?" }, |
| 412 | { 0x0011, 0x0012, "LO", "Dataset Name" }, |
| 413 | { 0x0011, 0x0013, "LO", "Dataset Type" }, |
| 414 | { 0x0011, 0x0015, "xs", "?" }, |
| 415 | { 0x0011, 0x0016, "SL", "Energy Number" }, |
| 416 | { 0x0011, 0x0017, "SL", "RR Interval Window Number" }, |
| 417 | { 0x0011, 0x0018, "SL", "MG Bin Number" }, |
| 418 | { 0x0011, 0x0019, "FD", "Radius Of Rotation" }, |
| 419 | { 0x0011, 0x001a, "SL", "Detector Count Zone" }, |
| 420 | { 0x0011, 0x001b, "SL", "Num Energy Windows" }, |
| 421 | { 0x0011, 0x001c, "SL", "Energy Offset" }, |
| 422 | { 0x0011, 0x001d, "SL", "Energy Range" }, |
| 423 | { 0x0011, 0x001f, "SL", "Image Orientation" }, |
| 424 | { 0x0011, 0x0020, "xs", "?" }, |
| 425 | { 0x0011, 0x0021, "xs", "?" }, |
| 426 | { 0x0011, 0x0022, "xs", "?" }, |
| 427 | { 0x0011, 0x0023, "xs", "?" }, |
| 428 | { 0x0011, 0x0024, "SL", "FOV Mask Y Cutoff Angle" }, |
| 429 | { 0x0011, 0x0025, "xs", "?" }, |
| 430 | { 0x0011, 0x0026, "SL", "Table Orientation" }, |
| 431 | { 0x0011, 0x0027, "SL", "ROI Top Left" }, |
| 432 | { 0x0011, 0x0028, "SL", "ROI Bottom Right" }, |
| 433 | { 0x0011, 0x0030, "xs", "?" }, |
| 434 | { 0x0011, 0x0031, "xs", "?" }, |
| 435 | { 0x0011, 0x0032, "UN", "?" }, |
| 436 | { 0x0011, 0x0033, "LO", "Energy Correct Name" }, |
| 437 | { 0x0011, 0x0034, "LO", "Spatial Correct Name" }, |
| 438 | { 0x0011, 0x0035, "xs", "?" }, |
| 439 | { 0x0011, 0x0036, "LO", "Uniformity Correct Name" }, |
| 440 | { 0x0011, 0x0037, "LO", "Acquisition Specific Correct Name" }, |
| 441 | { 0x0011, 0x0038, "SL", "Byte Order" }, |
| 442 | { 0x0011, 0x003a, "SL", "Picture Format" }, |
| 443 | { 0x0011, 0x003b, "FD", "Pixel Scale" }, |
| 444 | { 0x0011, 0x003c, "FD", "Pixel Offset" }, |
| 445 | { 0x0011, 0x003e, "SL", "FOV Shape" }, |
| 446 | { 0x0011, 0x003f, "SL", "Dataset Flags" }, |
| 447 | { 0x0011, 0x0040, "xs", "?" }, |
| 448 | { 0x0011, 0x0041, "LT", "Medical Alerts" }, |
| 449 | { 0x0011, 0x0042, "LT", "Contrast Allergies" }, |
| 450 | { 0x0011, 0x0044, "FD", "Threshold Center" }, |
| 451 | { 0x0011, 0x0045, "FD", "Threshold Width" }, |
| 452 | { 0x0011, 0x0046, "SL", "Interpolation Type" }, |
| 453 | { 0x0011, 0x0055, "FD", "Period" }, |
| 454 | { 0x0011, 0x0056, "FD", "ElapsedTime" }, |
| 455 | { 0x0011, 0x00a1, "DA", "Patient Registration Date" }, |
| 456 | { 0x0011, 0x00a2, "TM", "Patient Registration Time" }, |
| 457 | { 0x0011, 0x00b0, "LT", "Patient Last Name" }, |
| 458 | { 0x0011, 0x00b2, "LT", "Patient First Name" }, |
| 459 | { 0x0011, 0x00b4, "LT", "Patient Hospital Status" }, |
| 460 | { 0x0011, 0x00bc, "TM", "Current Location Time" }, |
| 461 | { 0x0011, 0x00c0, "LT", "Patient Insurance Status" }, |
| 462 | { 0x0011, 0x00d0, "LT", "Patient Billing Type" }, |
| 463 | { 0x0011, 0x00d2, "LT", "Patient Billing Address" }, |
| 464 | { 0x0013, 0x0000, "LT", "Modifying Physician" }, |
| 465 | { 0x0013, 0x0010, "xs", "?" }, |
| 466 | { 0x0013, 0x0011, "SL", "?" }, |
| 467 | { 0x0013, 0x0012, "xs", "?" }, |
| 468 | { 0x0013, 0x0016, "SL", "AutoTrack Peak" }, |
| 469 | { 0x0013, 0x0017, "SL", "AutoTrack Width" }, |
| 470 | { 0x0013, 0x0018, "FD", "Transmission Scan Time" }, |
| 471 | { 0x0013, 0x0019, "FD", "Transmission Mask Width" }, |
| 472 | { 0x0013, 0x001a, "FD", "Copper Attenuator Thickness" }, |
| 473 | { 0x0013, 0x001c, "FD", "?" }, |
| 474 | { 0x0013, 0x001d, "FD", "?" }, |
| 475 | { 0x0013, 0x001e, "FD", "Tomo View Offset" }, |
| 476 | { 0x0013, 0x0020, "LT", "Patient Name" }, |
| 477 | { 0x0013, 0x0022, "LT", "Patient Id" }, |
| 478 | { 0x0013, 0x0026, "LT", "Study Comments" }, |
| 479 | { 0x0013, 0x0030, "DA", "Patient Birthdate" }, |
| 480 | { 0x0013, 0x0031, "DS", "Patient Weight" }, |
| 481 | { 0x0013, 0x0032, "LT", "Patients Maiden Name" }, |
| 482 | { 0x0013, 0x0033, "LT", "Referring Physician" }, |
| 483 | { 0x0013, 0x0034, "LT", "Admitting Diagnosis" }, |
| 484 | { 0x0013, 0x0035, "LT", "Patient Sex" }, |
| 485 | { 0x0013, 0x0040, "LT", "Procedure Description" }, |
| 486 | { 0x0013, 0x0042, "LT", "Patient Rest Direction" }, |
| 487 | { 0x0013, 0x0044, "LT", "Patient Position" }, |
| 488 | { 0x0013, 0x0046, "LT", "View Direction" }, |
| 489 | { 0x0015, 0x0001, "DS", "Stenosis Calibration Ratio" }, |
| 490 | { 0x0015, 0x0002, "DS", "Stenosis Magnification" }, |
| 491 | { 0x0015, 0x0003, "DS", "Cardiac Calibration Ratio" }, |
| 492 | { 0x0018, 0x0000, "UL", "Acquisition Group Length" }, |
| 493 | { 0x0018, 0x0010, "LO", "Contrast/Bolus Agent" }, |
| 494 | { 0x0018, 0x0012, "SQ", "Contrast/Bolus Agent Sequence" }, |
| 495 | { 0x0018, 0x0014, "SQ", "Contrast/Bolus Administration Route Sequence" }, |
| 496 | { 0x0018, 0x0015, "CS", "Body Part Examined" }, |
| 497 | { 0x0018, 0x0020, "CS", "Scanning Sequence" }, |
| 498 | { 0x0018, 0x0021, "CS", "Sequence Variant" }, |
| 499 | { 0x0018, 0x0022, "CS", "Scan Options" }, |
| 500 | { 0x0018, 0x0023, "CS", "MR Acquisition Type" }, |
| 501 | { 0x0018, 0x0024, "SH", "Sequence Name" }, |
| 502 | { 0x0018, 0x0025, "CS", "Angio Flag" }, |
| 503 | { 0x0018, 0x0026, "SQ", "Intervention Drug Information Sequence" }, |
| 504 | { 0x0018, 0x0027, "TM", "Intervention Drug Stop Time" }, |
| 505 | { 0x0018, 0x0028, "DS", "Intervention Drug Dose" }, |
| 506 | { 0x0018, 0x0029, "SQ", "Intervention Drug Code Sequence" }, |
| 507 | { 0x0018, 0x002a, "SQ", "Additional Drug Sequence" }, |
| 508 | { 0x0018, 0x0030, "LO", "Radionuclide" }, |
| 509 | { 0x0018, 0x0031, "LO", "Radiopharmaceutical" }, |
| 510 | { 0x0018, 0x0032, "DS", "Energy Window Centerline" }, |
| 511 | { 0x0018, 0x0033, "DS", "Energy Window Total Width" }, |
| 512 | { 0x0018, 0x0034, "LO", "Intervention Drug Name" }, |
| 513 | { 0x0018, 0x0035, "TM", "Intervention Drug Start Time" }, |
| 514 | { 0x0018, 0x0036, "SQ", "Intervention Therapy Sequence" }, |
| 515 | { 0x0018, 0x0037, "CS", "Therapy Type" }, |
| 516 | { 0x0018, 0x0038, "CS", "Intervention Status" }, |
| 517 | { 0x0018, 0x0039, "CS", "Therapy Description" }, |
| 518 | { 0x0018, 0x0040, "IS", "Cine Rate" }, |
| 519 | { 0x0018, 0x0050, "DS", "Slice Thickness" }, |
| 520 | { 0x0018, 0x0060, "DS", "KVP" }, |
| 521 | { 0x0018, 0x0070, "IS", "Counts Accumulated" }, |
| 522 | { 0x0018, 0x0071, "CS", "Acquisition Termination Condition" }, |
| 523 | { 0x0018, 0x0072, "DS", "Effective Series Duration" }, |
| 524 | { 0x0018, 0x0073, "CS", "Acquisition Start Condition" }, |
| 525 | { 0x0018, 0x0074, "IS", "Acquisition Start Condition Data" }, |
| 526 | { 0x0018, 0x0075, "IS", "Acquisition Termination Condition Data" }, |
| 527 | { 0x0018, 0x0080, "DS", "Repetition Time" }, |
| 528 | { 0x0018, 0x0081, "DS", "Echo Time" }, |
| 529 | { 0x0018, 0x0082, "DS", "Inversion Time" }, |
| 530 | { 0x0018, 0x0083, "DS", "Number of Averages" }, |
| 531 | { 0x0018, 0x0084, "DS", "Imaging Frequency" }, |
| 532 | { 0x0018, 0x0085, "SH", "Imaged Nucleus" }, |
| 533 | { 0x0018, 0x0086, "IS", "Echo Number(s)" }, |
| 534 | { 0x0018, 0x0087, "DS", "Magnetic Field Strength" }, |
| 535 | { 0x0018, 0x0088, "DS", "Spacing Between Slices" }, |
| 536 | { 0x0018, 0x0089, "IS", "Number of Phase Encoding Steps" }, |
| 537 | { 0x0018, 0x0090, "DS", "Data Collection Diameter" }, |
| 538 | { 0x0018, 0x0091, "IS", "Echo Train Length" }, |
| 539 | { 0x0018, 0x0093, "DS", "Percent Sampling" }, |
| 540 | { 0x0018, 0x0094, "DS", "Percent Phase Field of View" }, |
| 541 | { 0x0018, 0x0095, "DS", "Pixel Bandwidth" }, |
| 542 | { 0x0018, 0x1000, "LO", "Device Serial Number" }, |
| 543 | { 0x0018, 0x1004, "LO", "Plate ID" }, |
| 544 | { 0x0018, 0x1010, "LO", "Secondary Capture Device ID" }, |
| 545 | { 0x0018, 0x1012, "DA", "Date of Secondary Capture" }, |
| 546 | { 0x0018, 0x1014, "TM", "Time of Secondary Capture" }, |
| 547 | { 0x0018, 0x1016, "LO", "Secondary Capture Device Manufacturer" }, |
| 548 | { 0x0018, 0x1018, "LO", "Secondary Capture Device Manufacturer Model Name" }, |
| 549 | { 0x0018, 0x1019, "LO", "Secondary Capture Device Software Version(s)" }, |
| 550 | { 0x0018, 0x1020, "LO", "Software Version(s)" }, |
| 551 | { 0x0018, 0x1022, "SH", "Video Image Format Acquired" }, |
| 552 | { 0x0018, 0x1023, "LO", "Digital Image Format Acquired" }, |
| 553 | { 0x0018, 0x1030, "LO", "Protocol Name" }, |
| 554 | { 0x0018, 0x1040, "LO", "Contrast/Bolus Route" }, |
| 555 | { 0x0018, 0x1041, "DS", "Contrast/Bolus Volume" }, |
| 556 | { 0x0018, 0x1042, "TM", "Contrast/Bolus Start Time" }, |
| 557 | { 0x0018, 0x1043, "TM", "Contrast/Bolus Stop Time" }, |
| 558 | { 0x0018, 0x1044, "DS", "Contrast/Bolus Total Dose" }, |
| 559 | { 0x0018, 0x1045, "IS", "Syringe Counts" }, |
| 560 | { 0x0018, 0x1046, "DS", "Contrast Flow Rate" }, |
| 561 | { 0x0018, 0x1047, "DS", "Contrast Flow Duration" }, |
| 562 | { 0x0018, 0x1048, "CS", "Contrast/Bolus Ingredient" }, |
| 563 | { 0x0018, 0x1049, "DS", "Contrast/Bolus Ingredient Concentration" }, |
| 564 | { 0x0018, 0x1050, "DS", "Spatial Resolution" }, |
| 565 | { 0x0018, 0x1060, "DS", "Trigger Time" }, |
| 566 | { 0x0018, 0x1061, "LO", "Trigger Source or Type" }, |
| 567 | { 0x0018, 0x1062, "IS", "Nominal Interval" }, |
| 568 | { 0x0018, 0x1063, "DS", "Frame Time" }, |
| 569 | { 0x0018, 0x1064, "LO", "Framing Type" }, |
| 570 | { 0x0018, 0x1065, "DS", "Frame Time Vector" }, |
| 571 | { 0x0018, 0x1066, "DS", "Frame Delay" }, |
| 572 | { 0x0018, 0x1067, "DS", "Image Trigger Delay" }, |
| 573 | { 0x0018, 0x1068, "DS", "Group Time Offset" }, |
| 574 | { 0x0018, 0x1069, "DS", "Trigger Time Offset" }, |
| 575 | { 0x0018, 0x106a, "CS", "Synchronization Trigger" }, |
| 576 | { 0x0018, 0x106b, "UI", "Synchronization Frame of Reference" }, |
| 577 | { 0x0018, 0x106e, "UL", "Trigger Sample Position" }, |
| 578 | { 0x0018, 0x1070, "LO", "Radiopharmaceutical Route" }, |
| 579 | { 0x0018, 0x1071, "DS", "Radiopharmaceutical Volume" }, |
| 580 | { 0x0018, 0x1072, "TM", "Radiopharmaceutical Start Time" }, |
| 581 | { 0x0018, 0x1073, "TM", "Radiopharmaceutical Stop Time" }, |
| 582 | { 0x0018, 0x1074, "DS", "Radionuclide Total Dose" }, |
| 583 | { 0x0018, 0x1075, "DS", "Radionuclide Half Life" }, |
| 584 | { 0x0018, 0x1076, "DS", "Radionuclide Positron Fraction" }, |
| 585 | { 0x0018, 0x1077, "DS", "Radiopharmaceutical Specific Activity" }, |
| 586 | { 0x0018, 0x1080, "CS", "Beat Rejection Flag" }, |
| 587 | { 0x0018, 0x1081, "IS", "Low R-R Value" }, |
| 588 | { 0x0018, 0x1082, "IS", "High R-R Value" }, |
| 589 | { 0x0018, 0x1083, "IS", "Intervals Acquired" }, |
| 590 | { 0x0018, 0x1084, "IS", "Intervals Rejected" }, |
| 591 | { 0x0018, 0x1085, "LO", "PVC Rejection" }, |
| 592 | { 0x0018, 0x1086, "IS", "Skip Beats" }, |
| 593 | { 0x0018, 0x1088, "IS", "Heart Rate" }, |
| 594 | { 0x0018, 0x1090, "IS", "Cardiac Number of Images" }, |
| 595 | { 0x0018, 0x1094, "IS", "Trigger Window" }, |
| 596 | { 0x0018, 0x1100, "DS", "Reconstruction Diameter" }, |
| 597 | { 0x0018, 0x1110, "DS", "Distance Source to Detector" }, |
| 598 | { 0x0018, 0x1111, "DS", "Distance Source to Patient" }, |
| 599 | { 0x0018, 0x1114, "DS", "Estimated Radiographic Magnification Factor" }, |
| 600 | { 0x0018, 0x1120, "DS", "Gantry/Detector Tilt" }, |
| 601 | { 0x0018, 0x1121, "DS", "Gantry/Detector Slew" }, |
| 602 | { 0x0018, 0x1130, "DS", "Table Height" }, |
| 603 | { 0x0018, 0x1131, "DS", "Table Traverse" }, |
| 604 | { 0x0018, 0x1134, "CS", "Table Motion" }, |
| 605 | { 0x0018, 0x1135, "DS", "Table Vertical Increment" }, |
| 606 | { 0x0018, 0x1136, "DS", "Table Lateral Increment" }, |
| 607 | { 0x0018, 0x1137, "DS", "Table Longitudinal Increment" }, |
| 608 | { 0x0018, 0x1138, "DS", "Table Angle" }, |
| 609 | { 0x0018, 0x113a, "CS", "Table Type" }, |
| 610 | { 0x0018, 0x1140, "CS", "Rotation Direction" }, |
| 611 | { 0x0018, 0x1141, "DS", "Angular Position" }, |
| 612 | { 0x0018, 0x1142, "DS", "Radial Position" }, |
| 613 | { 0x0018, 0x1143, "DS", "Scan Arc" }, |
| 614 | { 0x0018, 0x1144, "DS", "Angular Step" }, |
| 615 | { 0x0018, 0x1145, "DS", "Center of Rotation Offset" }, |
| 616 | { 0x0018, 0x1146, "DS", "Rotation Offset" }, |
| 617 | { 0x0018, 0x1147, "CS", "Field of View Shape" }, |
| 618 | { 0x0018, 0x1149, "IS", "Field of View Dimension(s)" }, |
| 619 | { 0x0018, 0x1150, "IS", "Exposure Time" }, |
| 620 | { 0x0018, 0x1151, "IS", "X-ray Tube Current" }, |
| 621 | { 0x0018, 0x1152, "IS", "Exposure" }, |
| 622 | { 0x0018, 0x1153, "IS", "Exposure in uAs" }, |
| 623 | { 0x0018, 0x1154, "DS", "AveragePulseWidth" }, |
| 624 | { 0x0018, 0x1155, "CS", "RadiationSetting" }, |
| 625 | { 0x0018, 0x1156, "CS", "Rectification Type" }, |
| 626 | { 0x0018, 0x115a, "CS", "RadiationMode" }, |
| 627 | { 0x0018, 0x115e, "DS", "ImageAreaDoseProduct" }, |
| 628 | { 0x0018, 0x1160, "SH", "Filter Type" }, |
| 629 | { 0x0018, 0x1161, "LO", "TypeOfFilters" }, |
| 630 | { 0x0018, 0x1162, "DS", "IntensifierSize" }, |
| 631 | { 0x0018, 0x1164, "DS", "ImagerPixelSpacing" }, |
| 632 | { 0x0018, 0x1166, "CS", "Grid" }, |
| 633 | { 0x0018, 0x1170, "IS", "Generator Power" }, |
| 634 | { 0x0018, 0x1180, "SH", "Collimator/Grid Name" }, |
| 635 | { 0x0018, 0x1181, "CS", "Collimator Type" }, |
| 636 | { 0x0018, 0x1182, "IS", "Focal Distance" }, |
| 637 | { 0x0018, 0x1183, "DS", "X Focus Center" }, |
| 638 | { 0x0018, 0x1184, "DS", "Y Focus Center" }, |
| 639 | { 0x0018, 0x1190, "DS", "Focal Spot(s)" }, |
| 640 | { 0x0018, 0x1191, "CS", "Anode Target Material" }, |
| 641 | { 0x0018, 0x11a0, "DS", "Body Part Thickness" }, |
| 642 | { 0x0018, 0x11a2, "DS", "Compression Force" }, |
| 643 | { 0x0018, 0x1200, "DA", "Date of Last Calibration" }, |
| 644 | { 0x0018, 0x1201, "TM", "Time of Last Calibration" }, |
| 645 | { 0x0018, 0x1210, "SH", "Convolution Kernel" }, |
| 646 | { 0x0018, 0x1240, "IS", "Upper/Lower Pixel Values" }, |
| 647 | { 0x0018, 0x1242, "IS", "Actual Frame Duration" }, |
| 648 | { 0x0018, 0x1243, "IS", "Count Rate" }, |
| 649 | { 0x0018, 0x1244, "US", "Preferred Playback Sequencing" }, |
| 650 | { 0x0018, 0x1250, "SH", "Receiving Coil" }, |
| 651 | { 0x0018, 0x1251, "SH", "Transmitting Coil" }, |
| 652 | { 0x0018, 0x1260, "SH", "Plate Type" }, |
| 653 | { 0x0018, 0x1261, "LO", "Phosphor Type" }, |
| 654 | { 0x0018, 0x1300, "DS", "Scan Velocity" }, |
| 655 | { 0x0018, 0x1301, "CS", "Whole Body Technique" }, |
| 656 | { 0x0018, 0x1302, "IS", "Scan Length" }, |
| 657 | { 0x0018, 0x1310, "US", "Acquisition Matrix" }, |
| 658 | { 0x0018, 0x1312, "CS", "Phase Encoding Direction" }, |
| 659 | { 0x0018, 0x1314, "DS", "Flip Angle" }, |
| 660 | { 0x0018, 0x1315, "CS", "Variable Flip Angle Flag" }, |
| 661 | { 0x0018, 0x1316, "DS", "SAR" }, |
| 662 | { 0x0018, 0x1318, "DS", "dB/dt" }, |
| 663 | { 0x0018, 0x1400, "LO", "Acquisition Device Processing Description" }, |
| 664 | { 0x0018, 0x1401, "LO", "Acquisition Device Processing Code" }, |
| 665 | { 0x0018, 0x1402, "CS", "Cassette Orientation" }, |
| 666 | { 0x0018, 0x1403, "CS", "Cassette Size" }, |
| 667 | { 0x0018, 0x1404, "US", "Exposures on Plate" }, |
| 668 | { 0x0018, 0x1405, "IS", "Relative X-ray Exposure" }, |
| 669 | { 0x0018, 0x1450, "DS", "Column Angulation" }, |
| 670 | { 0x0018, 0x1460, "DS", "Tomo Layer Height" }, |
| 671 | { 0x0018, 0x1470, "DS", "Tomo Angle" }, |
| 672 | { 0x0018, 0x1480, "DS", "Tomo Time" }, |
| 673 | { 0x0018, 0x1490, "CS", "Tomo Type" }, |
| 674 | { 0x0018, 0x1491, "CS", "Tomo Class" }, |
| 675 | { 0x0018, 0x1495, "IS", "Number of Tomosynthesis Source Images" }, |
| 676 | { 0x0018, 0x1500, "CS", "PositionerMotion" }, |
| 677 | { 0x0018, 0x1508, "CS", "Positioner Type" }, |
| 678 | { 0x0018, 0x1510, "DS", "PositionerPrimaryAngle" }, |
| 679 | { 0x0018, 0x1511, "DS", "PositionerSecondaryAngle" }, |
| 680 | { 0x0018, 0x1520, "DS", "PositionerPrimaryAngleIncrement" }, |
| 681 | { 0x0018, 0x1521, "DS", "PositionerSecondaryAngleIncrement" }, |
| 682 | { 0x0018, 0x1530, "DS", "DetectorPrimaryAngle" }, |
| 683 | { 0x0018, 0x1531, "DS", "DetectorSecondaryAngle" }, |
| 684 | { 0x0018, 0x1600, "CS", "Shutter Shape" }, |
| 685 | { 0x0018, 0x1602, "IS", "Shutter Left Vertical Edge" }, |
| 686 | { 0x0018, 0x1604, "IS", "Shutter Right Vertical Edge" }, |
| 687 | { 0x0018, 0x1606, "IS", "Shutter Upper Horizontal Edge" }, |
| 688 | { 0x0018, 0x1608, "IS", "Shutter Lower Horizonta lEdge" }, |
| 689 | { 0x0018, 0x1610, "IS", "Center of Circular Shutter" }, |
| 690 | { 0x0018, 0x1612, "IS", "Radius of Circular Shutter" }, |
| 691 | { 0x0018, 0x1620, "IS", "Vertices of Polygonal Shutter" }, |
| 692 | { 0x0018, 0x1622, "US", "Shutter Presentation Value" }, |
| 693 | { 0x0018, 0x1623, "US", "Shutter Overlay Group" }, |
| 694 | { 0x0018, 0x1700, "CS", "Collimator Shape" }, |
| 695 | { 0x0018, 0x1702, "IS", "Collimator Left Vertical Edge" }, |
| 696 | { 0x0018, 0x1704, "IS", "Collimator Right Vertical Edge" }, |
| 697 | { 0x0018, 0x1706, "IS", "Collimator Upper Horizontal Edge" }, |
| 698 | { 0x0018, 0x1708, "IS", "Collimator Lower Horizontal Edge" }, |
| 699 | { 0x0018, 0x1710, "IS", "Center of Circular Collimator" }, |
| 700 | { 0x0018, 0x1712, "IS", "Radius of Circular Collimator" }, |
| 701 | { 0x0018, 0x1720, "IS", "Vertices of Polygonal Collimator" }, |
| 702 | { 0x0018, 0x1800, "CS", "Acquisition Time Synchronized" }, |
| 703 | { 0x0018, 0x1801, "SH", "Time Source" }, |
| 704 | { 0x0018, 0x1802, "CS", "Time Distribution Protocol" }, |
| 705 | { 0x0018, 0x4000, "LT", "Acquisition Comments" }, |
| 706 | { 0x0018, 0x5000, "SH", "Output Power" }, |
| 707 | { 0x0018, 0x5010, "LO", "Transducer Data" }, |
| 708 | { 0x0018, 0x5012, "DS", "Focus Depth" }, |
| 709 | { 0x0018, 0x5020, "LO", "Processing Function" }, |
| 710 | { 0x0018, 0x5021, "LO", "Postprocessing Function" }, |
| 711 | { 0x0018, 0x5022, "DS", "Mechanical Index" }, |
| 712 | { 0x0018, 0x5024, "DS", "Thermal Index" }, |
| 713 | { 0x0018, 0x5026, "DS", "Cranial Thermal Index" }, |
| 714 | { 0x0018, 0x5027, "DS", "Soft Tissue Thermal Index" }, |
| 715 | { 0x0018, 0x5028, "DS", "Soft Tissue-Focus Thermal Index" }, |
| 716 | { 0x0018, 0x5029, "DS", "Soft Tissue-Surface Thermal Index" }, |
| 717 | { 0x0018, 0x5030, "DS", "Dynamic Range" }, |
| 718 | { 0x0018, 0x5040, "DS", "Total Gain" }, |
| 719 | { 0x0018, 0x5050, "IS", "Depth of Scan Field" }, |
| 720 | { 0x0018, 0x5100, "CS", "Patient Position" }, |
| 721 | { 0x0018, 0x5101, "CS", "View Position" }, |
| 722 | { 0x0018, 0x5104, "SQ", "Projection Eponymous Name Code Sequence" }, |
| 723 | { 0x0018, 0x5210, "DS", "Image Transformation Matrix" }, |
| 724 | { 0x0018, 0x5212, "DS", "Image Translation Vector" }, |
| 725 | { 0x0018, 0x6000, "DS", "Sensitivity" }, |
| 726 | { 0x0018, 0x6011, "IS", "Sequence of Ultrasound Regions" }, |
| 727 | { 0x0018, 0x6012, "US", "Region Spatial Format" }, |
| 728 | { 0x0018, 0x6014, "US", "Region Data Type" }, |
| 729 | { 0x0018, 0x6016, "UL", "Region Flags" }, |
| 730 | { 0x0018, 0x6018, "UL", "Region Location Min X0" }, |
| 731 | { 0x0018, 0x601a, "UL", "Region Location Min Y0" }, |
| 732 | { 0x0018, 0x601c, "UL", "Region Location Max X1" }, |
| 733 | { 0x0018, 0x601e, "UL", "Region Location Max Y1" }, |
| 734 | { 0x0018, 0x6020, "SL", "Reference Pixel X0" }, |
| 735 | { 0x0018, 0x6022, "SL", "Reference Pixel Y0" }, |
| 736 | { 0x0018, 0x6024, "US", "Physical Units X Direction" }, |
| 737 | { 0x0018, 0x6026, "US", "Physical Units Y Direction" }, |
| 738 | { 0x0018, 0x6028, "FD", "Reference Pixel Physical Value X" }, |
| 739 | { 0x0018, 0x602a, "US", "Reference Pixel Physical Value Y" }, |
| 740 | { 0x0018, 0x602c, "US", "Physical Delta X" }, |
| 741 | { 0x0018, 0x602e, "US", "Physical Delta Y" }, |
| 742 | { 0x0018, 0x6030, "UL", "Transducer Frequency" }, |
| 743 | { 0x0018, 0x6031, "CS", "Transducer Type" }, |
| 744 | { 0x0018, 0x6032, "UL", "Pulse Repetition Frequency" }, |
| 745 | { 0x0018, 0x6034, "FD", "Doppler Correction Angle" }, |
| 746 | { 0x0018, 0x6036, "FD", "Steering Angle" }, |
| 747 | { 0x0018, 0x6038, "UL", "Doppler Sample Volume X Position" }, |
| 748 | { 0x0018, 0x603a, "UL", "Doppler Sample Volume Y Position" }, |
| 749 | { 0x0018, 0x603c, "UL", "TM-Line Position X0" }, |
| 750 | { 0x0018, 0x603e, "UL", "TM-Line Position Y0" }, |
| 751 | { 0x0018, 0x6040, "UL", "TM-Line Position X1" }, |
| 752 | { 0x0018, 0x6042, "UL", "TM-Line Position Y1" }, |
| 753 | { 0x0018, 0x6044, "US", "Pixel Component Organization" }, |
| 754 | { 0x0018, 0x6046, "UL", "Pixel Component Mask" }, |
| 755 | { 0x0018, 0x6048, "UL", "Pixel Component Range Start" }, |
| 756 | { 0x0018, 0x604a, "UL", "Pixel Component Range Stop" }, |
| 757 | { 0x0018, 0x604c, "US", "Pixel Component Physical Units" }, |
| 758 | { 0x0018, 0x604e, "US", "Pixel Component Data Type" }, |
| 759 | { 0x0018, 0x6050, "UL", "Number of Table Break Points" }, |
| 760 | { 0x0018, 0x6052, "UL", "Table of X Break Points" }, |
| 761 | { 0x0018, 0x6054, "FD", "Table of Y Break Points" }, |
| 762 | { 0x0018, 0x6056, "UL", "Number of Table Entries" }, |
| 763 | { 0x0018, 0x6058, "UL", "Table of Pixel Values" }, |
| 764 | { 0x0018, 0x605a, "FL", "Table of Parameter Values" }, |
| 765 | { 0x0018, 0x7000, "CS", "Detector Conditions Nominal Flag" }, |
| 766 | { 0x0018, 0x7001, "DS", "Detector Temperature" }, |
| 767 | { 0x0018, 0x7004, "CS", "Detector Type" }, |
| 768 | { 0x0018, 0x7005, "CS", "Detector Configuration" }, |
| 769 | { 0x0018, 0x7006, "LT", "Detector Description" }, |
| 770 | { 0x0018, 0x7008, "LT", "Detector Mode" }, |
| 771 | { 0x0018, 0x700a, "SH", "Detector ID" }, |
| 772 | { 0x0018, 0x700c, "DA", "Date of Last Detector Calibration " }, |
| 773 | { 0x0018, 0x700e, "TM", "Time of Last Detector Calibration" }, |
| 774 | { 0x0018, 0x7010, "IS", "Exposures on Detector Since Last Calibration" }, |
| 775 | { 0x0018, 0x7011, "IS", "Exposures on Detector Since Manufactured" }, |
| 776 | { 0x0018, 0x7012, "DS", "Detector Time Since Last Exposure" }, |
| 777 | { 0x0018, 0x7014, "DS", "Detector Active Time" }, |
| 778 | { 0x0018, 0x7016, "DS", "Detector Activation Offset From Exposure" }, |
| 779 | { 0x0018, 0x701a, "DS", "Detector Binning" }, |
| 780 | { 0x0018, 0x7020, "DS", "Detector Element Physical Size" }, |
| 781 | { 0x0018, 0x7022, "DS", "Detector Element Spacing" }, |
| 782 | { 0x0018, 0x7024, "CS", "Detector Active Shape" }, |
| 783 | { 0x0018, 0x7026, "DS", "Detector Active Dimensions" }, |
| 784 | { 0x0018, 0x7028, "DS", "Detector Active Origin" }, |
| 785 | { 0x0018, 0x7030, "DS", "Field of View Origin" }, |
| 786 | { 0x0018, 0x7032, "DS", "Field of View Rotation" }, |
| 787 | { 0x0018, 0x7034, "CS", "Field of View Horizontal Flip" }, |
| 788 | { 0x0018, 0x7040, "LT", "Grid Absorbing Material" }, |
| 789 | { 0x0018, 0x7041, "LT", "Grid Spacing Material" }, |
| 790 | { 0x0018, 0x7042, "DS", "Grid Thickness" }, |
| 791 | { 0x0018, 0x7044, "DS", "Grid Pitch" }, |
| 792 | { 0x0018, 0x7046, "IS", "Grid Aspect Ratio" }, |
| 793 | { 0x0018, 0x7048, "DS", "Grid Period" }, |
| 794 | { 0x0018, 0x704c, "DS", "Grid Focal Distance" }, |
| 795 | { 0x0018, 0x7050, "LT", "Filter Material" }, |
| 796 | { 0x0018, 0x7052, "DS", "Filter Thickness Minimum" }, |
| 797 | { 0x0018, 0x7054, "DS", "Filter Thickness Maximum" }, |
| 798 | { 0x0018, 0x7060, "CS", "Exposure Control Mode" }, |
| 799 | { 0x0018, 0x7062, "LT", "Exposure Control Mode Description" }, |
| 800 | { 0x0018, 0x7064, "CS", "Exposure Status" }, |
| 801 | { 0x0018, 0x7065, "DS", "Phototimer Setting" }, |
| 802 | { 0x0019, 0x0000, "xs", "?" }, |
| 803 | { 0x0019, 0x0001, "xs", "?" }, |
| 804 | { 0x0019, 0x0002, "xs", "?" }, |
| 805 | { 0x0019, 0x0003, "xs", "?" }, |
| 806 | { 0x0019, 0x0004, "xs", "?" }, |
| 807 | { 0x0019, 0x0005, "xs", "?" }, |
| 808 | { 0x0019, 0x0006, "xs", "?" }, |
| 809 | { 0x0019, 0x0007, "xs", "?" }, |
| 810 | { 0x0019, 0x0008, "xs", "?" }, |
| 811 | { 0x0019, 0x0009, "xs", "?" }, |
| 812 | { 0x0019, 0x000a, "xs", "?" }, |
| 813 | { 0x0019, 0x000b, "DS", "?" }, |
| 814 | { 0x0019, 0x000c, "US", "?" }, |
| 815 | { 0x0019, 0x000d, "TM", "Time" }, |
| 816 | { 0x0019, 0x000e, "xs", "?" }, |
| 817 | { 0x0019, 0x000f, "DS", "Horizontal Frame Of Reference" }, |
| 818 | { 0x0019, 0x0010, "xs", "?" }, |
| 819 | { 0x0019, 0x0011, "xs", "?" }, |
| 820 | { 0x0019, 0x0012, "xs", "?" }, |
| 821 | { 0x0019, 0x0013, "xs", "?" }, |
| 822 | { 0x0019, 0x0014, "xs", "?" }, |
| 823 | { 0x0019, 0x0015, "xs", "?" }, |
| 824 | { 0x0019, 0x0016, "xs", "?" }, |
| 825 | { 0x0019, 0x0017, "xs", "?" }, |
| 826 | { 0x0019, 0x0018, "xs", "?" }, |
| 827 | { 0x0019, 0x0019, "xs", "?" }, |
| 828 | { 0x0019, 0x001a, "xs", "?" }, |
| 829 | { 0x0019, 0x001b, "xs", "?" }, |
| 830 | { 0x0019, 0x001c, "CS", "Dose" }, |
| 831 | { 0x0019, 0x001d, "IS", "Side Mark" }, |
| 832 | { 0x0019, 0x001e, "xs", "?" }, |
| 833 | { 0x0019, 0x001f, "DS", "Exposure Duration" }, |
| 834 | { 0x0019, 0x0020, "xs", "?" }, |
| 835 | { 0x0019, 0x0021, "xs", "?" }, |
| 836 | { 0x0019, 0x0022, "xs", "?" }, |
| 837 | { 0x0019, 0x0023, "xs", "?" }, |
| 838 | { 0x0019, 0x0024, "xs", "?" }, |
| 839 | { 0x0019, 0x0025, "xs", "?" }, |
| 840 | { 0x0019, 0x0026, "xs", "?" }, |
| 841 | { 0x0019, 0x0027, "xs", "?" }, |
| 842 | { 0x0019, 0x0028, "xs", "?" }, |
| 843 | { 0x0019, 0x0029, "IS", "?" }, |
| 844 | { 0x0019, 0x002a, "xs", "?" }, |
| 845 | { 0x0019, 0x002b, "DS", "Xray Off Position" }, |
| 846 | { 0x0019, 0x002c, "xs", "?" }, |
| 847 | { 0x0019, 0x002d, "US", "?" }, |
| 848 | { 0x0019, 0x002e, "xs", "?" }, |
| 849 | { 0x0019, 0x002f, "DS", "Trigger Frequency" }, |
| 850 | { 0x0019, 0x0030, "xs", "?" }, |
| 851 | { 0x0019, 0x0031, "xs", "?" }, |
| 852 | { 0x0019, 0x0032, "xs", "?" }, |
| 853 | { 0x0019, 0x0033, "UN", "ECG 2 Offset 2" }, |
| 854 | { 0x0019, 0x0034, "US", "?" }, |
| 855 | { 0x0019, 0x0036, "US", "?" }, |
| 856 | { 0x0019, 0x0038, "US", "?" }, |
| 857 | { 0x0019, 0x0039, "xs", "?" }, |
| 858 | { 0x0019, 0x003a, "xs", "?" }, |
| 859 | { 0x0019, 0x003b, "LT", "?" }, |
| 860 | { 0x0019, 0x003c, "xs", "?" }, |
| 861 | { 0x0019, 0x003e, "xs", "?" }, |
| 862 | { 0x0019, 0x003f, "UN", "?" }, |
| 863 | { 0x0019, 0x0040, "xs", "?" }, |
| 864 | { 0x0019, 0x0041, "xs", "?" }, |
| 865 | { 0x0019, 0x0042, "xs", "?" }, |
| 866 | { 0x0019, 0x0043, "xs", "?" }, |
| 867 | { 0x0019, 0x0044, "xs", "?" }, |
| 868 | { 0x0019, 0x0045, "xs", "?" }, |
| 869 | { 0x0019, 0x0046, "xs", "?" }, |
| 870 | { 0x0019, 0x0047, "xs", "?" }, |
| 871 | { 0x0019, 0x0048, "xs", "?" }, |
| 872 | { 0x0019, 0x0049, "US", "?" }, |
| 873 | { 0x0019, 0x004a, "xs", "?" }, |
| 874 | { 0x0019, 0x004b, "SL", "Data Size For Scan Data" }, |
| 875 | { 0x0019, 0x004c, "US", "?" }, |
| 876 | { 0x0019, 0x004e, "US", "?" }, |
| 877 | { 0x0019, 0x0050, "xs", "?" }, |
| 878 | { 0x0019, 0x0051, "xs", "?" }, |
| 879 | { 0x0019, 0x0052, "xs", "?" }, |
| 880 | { 0x0019, 0x0053, "LT", "Barcode" }, |
| 881 | { 0x0019, 0x0054, "xs", "?" }, |
| 882 | { 0x0019, 0x0055, "DS", "Receiver Reference Gain" }, |
| 883 | { 0x0019, 0x0056, "xs", "?" }, |
| 884 | { 0x0019, 0x0057, "SS", "CT Water Number" }, |
| 885 | { 0x0019, 0x0058, "xs", "?" }, |
| 886 | { 0x0019, 0x005a, "xs", "?" }, |
| 887 | { 0x0019, 0x005c, "xs", "?" }, |
| 888 | { 0x0019, 0x005d, "US", "?" }, |
| 889 | { 0x0019, 0x005e, "xs", "?" }, |
| 890 | { 0x0019, 0x005f, "SL", "Increment Between Channels" }, |
| 891 | { 0x0019, 0x0060, "xs", "?" }, |
| 892 | { 0x0019, 0x0061, "xs", "?" }, |
| 893 | { 0x0019, 0x0062, "xs", "?" }, |
| 894 | { 0x0019, 0x0063, "xs", "?" }, |
| 895 | { 0x0019, 0x0064, "xs", "?" }, |
| 896 | { 0x0019, 0x0065, "xs", "?" }, |
| 897 | { 0x0019, 0x0066, "xs", "?" }, |
| 898 | { 0x0019, 0x0067, "xs", "?" }, |
| 899 | { 0x0019, 0x0068, "xs", "?" }, |
| 900 | { 0x0019, 0x0069, "UL", "Convolution Mode" }, |
| 901 | { 0x0019, 0x006a, "xs", "?" }, |
| 902 | { 0x0019, 0x006b, "SS", "Field Of View In Detector Cells" }, |
| 903 | { 0x0019, 0x006c, "US", "?" }, |
| 904 | { 0x0019, 0x006e, "US", "?" }, |
| 905 | { 0x0019, 0x0070, "xs", "?" }, |
| 906 | { 0x0019, 0x0071, "xs", "?" }, |
| 907 | { 0x0019, 0x0072, "xs", "?" }, |
| 908 | { 0x0019, 0x0073, "xs", "?" }, |
| 909 | { 0x0019, 0x0074, "xs", "?" }, |
| 910 | { 0x0019, 0x0075, "xs", "?" }, |
| 911 | { 0x0019, 0x0076, "xs", "?" }, |
| 912 | { 0x0019, 0x0077, "US", "?" }, |
| 913 | { 0x0019, 0x0078, "US", "?" }, |
| 914 | { 0x0019, 0x007a, "US", "?" }, |
| 915 | { 0x0019, 0x007c, "US", "?" }, |
| 916 | { 0x0019, 0x007d, "DS", "Second Echo" }, |
| 917 | { 0x0019, 0x007e, "xs", "?" }, |
| 918 | { 0x0019, 0x007f, "DS", "Table Delta" }, |
| 919 | { 0x0019, 0x0080, "xs", "?" }, |
| 920 | { 0x0019, 0x0081, "xs", "?" }, |
| 921 | { 0x0019, 0x0082, "xs", "?" }, |
| 922 | { 0x0019, 0x0083, "xs", "?" }, |
| 923 | { 0x0019, 0x0084, "xs", "?" }, |
| 924 | { 0x0019, 0x0085, "xs", "?" }, |
| 925 | { 0x0019, 0x0086, "xs", "?" }, |
| 926 | { 0x0019, 0x0087, "xs", "?" }, |
| 927 | { 0x0019, 0x0088, "xs", "?" }, |
| 928 | { 0x0019, 0x008a, "xs", "?" }, |
| 929 | { 0x0019, 0x008b, "SS", "Actual Receive Gain Digital" }, |
| 930 | { 0x0019, 0x008c, "US", "?" }, |
| 931 | { 0x0019, 0x008d, "DS", "Delay After Trigger" }, |
| 932 | { 0x0019, 0x008e, "US", "?" }, |
| 933 | { 0x0019, 0x008f, "SS", "Swap Phase Frequency" }, |
| 934 | { 0x0019, 0x0090, "xs", "?" }, |
| 935 | { 0x0019, 0x0091, "xs", "?" }, |
| 936 | { 0x0019, 0x0092, "xs", "?" }, |
| 937 | { 0x0019, 0x0093, "xs", "?" }, |
| 938 | { 0x0019, 0x0094, "xs", "?" }, |
| 939 | { 0x0019, 0x0095, "SS", "Analog Receiver Gain" }, |
| 940 | { 0x0019, 0x0096, "xs", "?" }, |
| 941 | { 0x0019, 0x0097, "xs", "?" }, |
| 942 | { 0x0019, 0x0098, "xs", "?" }, |
| 943 | { 0x0019, 0x0099, "US", "?" }, |
| 944 | { 0x0019, 0x009a, "US", "?" }, |
| 945 | { 0x0019, 0x009b, "SS", "Pulse Sequence Mode" }, |
| 946 | { 0x0019, 0x009c, "xs", "?" }, |
| 947 | { 0x0019, 0x009d, "DT", "Pulse Sequence Date" }, |
| 948 | { 0x0019, 0x009e, "xs", "?" }, |
| 949 | { 0x0019, 0x009f, "xs", "?" }, |
| 950 | { 0x0019, 0x00a0, "xs", "?" }, |
| 951 | { 0x0019, 0x00a1, "xs", "?" }, |
| 952 | { 0x0019, 0x00a2, "xs", "?" }, |
| 953 | { 0x0019, 0x00a3, "xs", "?" }, |
| 954 | { 0x0019, 0x00a4, "xs", "?" }, |
| 955 | { 0x0019, 0x00a5, "xs", "?" }, |
| 956 | { 0x0019, 0x00a6, "xs", "?" }, |
| 957 | { 0x0019, 0x00a7, "xs", "?" }, |
| 958 | { 0x0019, 0x00a8, "xs", "?" }, |
| 959 | { 0x0019, 0x00a9, "xs", "?" }, |
| 960 | { 0x0019, 0x00aa, "xs", "?" }, |
| 961 | { 0x0019, 0x00ab, "xs", "?" }, |
| 962 | { 0x0019, 0x00ac, "xs", "?" }, |
| 963 | { 0x0019, 0x00ad, "xs", "?" }, |
| 964 | { 0x0019, 0x00ae, "xs", "?" }, |
| 965 | { 0x0019, 0x00af, "xs", "?" }, |
| 966 | { 0x0019, 0x00b0, "xs", "?" }, |
| 967 | { 0x0019, 0x00b1, "xs", "?" }, |
| 968 | { 0x0019, 0x00b2, "xs", "?" }, |
| 969 | { 0x0019, 0x00b3, "xs", "?" }, |
| 970 | { 0x0019, 0x00b4, "xs", "?" }, |
| 971 | { 0x0019, 0x00b5, "xs", "?" }, |
| 972 | { 0x0019, 0x00b6, "DS", "User Data" }, |
| 973 | { 0x0019, 0x00b7, "DS", "User Data" }, |
| 974 | { 0x0019, 0x00b8, "DS", "User Data" }, |
| 975 | { 0x0019, 0x00b9, "DS", "User Data" }, |
| 976 | { 0x0019, 0x00ba, "DS", "User Data" }, |
| 977 | { 0x0019, 0x00bb, "DS", "User Data" }, |
| 978 | { 0x0019, 0x00bc, "DS", "User Data" }, |
| 979 | { 0x0019, 0x00bd, "DS", "User Data" }, |
| 980 | { 0x0019, 0x00be, "DS", "Projection Angle" }, |
| 981 | { 0x0019, 0x00c0, "xs", "?" }, |
| 982 | { 0x0019, 0x00c1, "xs", "?" }, |
| 983 | { 0x0019, 0x00c2, "xs", "?" }, |
| 984 | { 0x0019, 0x00c3, "xs", "?" }, |
| 985 | { 0x0019, 0x00c4, "xs", "?" }, |
| 986 | { 0x0019, 0x00c5, "xs", "?" }, |
| 987 | { 0x0019, 0x00c6, "SS", "SAT Location H" }, |
| 988 | { 0x0019, 0x00c7, "SS", "SAT Location F" }, |
| 989 | { 0x0019, 0x00c8, "SS", "SAT Thickness R L" }, |
| 990 | { 0x0019, 0x00c9, "SS", "SAT Thickness A P" }, |
| 991 | { 0x0019, 0x00ca, "SS", "SAT Thickness H F" }, |
| 992 | { 0x0019, 0x00cb, "xs", "?" }, |
| 993 | { 0x0019, 0x00cc, "xs", "?" }, |
| 994 | { 0x0019, 0x00cd, "SS", "Thickness Disclaimer" }, |
| 995 | { 0x0019, 0x00ce, "SS", "Prescan Type" }, |
| 996 | { 0x0019, 0x00cf, "SS", "Prescan Status" }, |
| 997 | { 0x0019, 0x00d0, "SH", "Raw Data Type" }, |
| 998 | { 0x0019, 0x00d1, "DS", "Flow Sensitivity" }, |
| 999 | { 0x0019, 0x00d2, "xs", "?" }, |
| 1000 | { 0x0019, 0x00d3, "xs", "?" }, |
| 1001 | { 0x0019, 0x00d4, "xs", "?" }, |
| 1002 | { 0x0019, 0x00d5, "xs", "?" }, |
| 1003 | { 0x0019, 0x00d6, "xs", "?" }, |
| 1004 | { 0x0019, 0x00d7, "xs", "?" }, |
| 1005 | { 0x0019, 0x00d8, "xs", "?" }, |
| 1006 | { 0x0019, 0x00d9, "xs", "?" }, |
| 1007 | { 0x0019, 0x00da, "xs", "?" }, |
| 1008 | { 0x0019, 0x00db, "DS", "Back Projector Coefficient" }, |
| 1009 | { 0x0019, 0x00dc, "SS", "Primary Speed Correction Used" }, |
| 1010 | { 0x0019, 0x00dd, "SS", "Overrange Correction Used" }, |
| 1011 | { 0x0019, 0x00de, "DS", "Dynamic Z Alpha Value" }, |
| 1012 | { 0x0019, 0x00df, "DS", "User Data" }, |
| 1013 | { 0x0019, 0x00e0, "DS", "User Data" }, |
| 1014 | { 0x0019, 0x00e1, "xs", "?" }, |
| 1015 | { 0x0019, 0x00e2, "xs", "?" }, |
| 1016 | { 0x0019, 0x00e3, "xs", "?" }, |
| 1017 | { 0x0019, 0x00e4, "LT", "?" }, |
| 1018 | { 0x0019, 0x00e5, "IS", "?" }, |
| 1019 | { 0x0019, 0x00e6, "US", "?" }, |
| 1020 | { 0x0019, 0x00e8, "DS", "?" }, |
| 1021 | { 0x0019, 0x00e9, "DS", "?" }, |
| 1022 | { 0x0019, 0x00eb, "DS", "?" }, |
| 1023 | { 0x0019, 0x00ec, "US", "?" }, |
| 1024 | { 0x0019, 0x00f0, "xs", "?" }, |
| 1025 | { 0x0019, 0x00f1, "xs", "?" }, |
| 1026 | { 0x0019, 0x00f2, "xs", "?" }, |
| 1027 | { 0x0019, 0x00f3, "xs", "?" }, |
| 1028 | { 0x0019, 0x00f4, "LT", "?" }, |
| 1029 | { 0x0019, 0x00f9, "DS", "Transmission Gain" }, |
| 1030 | { 0x0019, 0x1015, "UN", "?" }, |
| 1031 | { 0x0020, 0x0000, "UL", "Relationship Group Length" }, |
| 1032 | { 0x0020, 0x000d, "UI", "Study Instance UID" }, |
| 1033 | { 0x0020, 0x000e, "UI", "Series Instance UID" }, |
| 1034 | { 0x0020, 0x0010, "SH", "Study ID" }, |
| 1035 | { 0x0020, 0x0011, "IS", "Series Number" }, |
| 1036 | { 0x0020, 0x0012, "IS", "Acquisition Number" }, |
| 1037 | { 0x0020, 0x0013, "IS", "Instance (formerly Image) Number" }, |
| 1038 | { 0x0020, 0x0014, "IS", "Isotope Number" }, |
| 1039 | { 0x0020, 0x0015, "IS", "Phase Number" }, |
| 1040 | { 0x0020, 0x0016, "IS", "Interval Number" }, |
| 1041 | { 0x0020, 0x0017, "IS", "Time Slot Number" }, |
| 1042 | { 0x0020, 0x0018, "IS", "Angle Number" }, |
| 1043 | { 0x0020, 0x0020, "CS", "Patient Orientation" }, |
| 1044 | { 0x0020, 0x0022, "IS", "Overlay Number" }, |
| 1045 | { 0x0020, 0x0024, "IS", "Curve Number" }, |
| 1046 | { 0x0020, 0x0026, "IS", "LUT Number" }, |
| 1047 | { 0x0020, 0x0030, "DS", "Image Position" }, |
| 1048 | { 0x0020, 0x0032, "DS", "Image Position (Patient)" }, |
| 1049 | { 0x0020, 0x0035, "DS", "Image Orientation" }, |
| 1050 | { 0x0020, 0x0037, "DS", "Image Orientation (Patient)" }, |
| 1051 | { 0x0020, 0x0050, "DS", "Location" }, |
| 1052 | { 0x0020, 0x0052, "UI", "Frame of Reference UID" }, |
| 1053 | { 0x0020, 0x0060, "CS", "Laterality" }, |
| 1054 | { 0x0020, 0x0062, "CS", "Image Laterality" }, |
| 1055 | { 0x0020, 0x0070, "LT", "Image Geometry Type" }, |
| 1056 | { 0x0020, 0x0080, "LO", "Masking Image" }, |
| 1057 | { 0x0020, 0x0100, "IS", "Temporal Position Identifier" }, |
| 1058 | { 0x0020, 0x0105, "IS", "Number of Temporal Positions" }, |
| 1059 | { 0x0020, 0x0110, "DS", "Temporal Resolution" }, |
| 1060 | { 0x0020, 0x1000, "IS", "Series in Study" }, |
| 1061 | { 0x0020, 0x1001, "DS", "Acquisitions in Series" }, |
| 1062 | { 0x0020, 0x1002, "IS", "Images in Acquisition" }, |
| 1063 | { 0x0020, 0x1003, "IS", "Images in Series" }, |
| 1064 | { 0x0020, 0x1004, "IS", "Acquisitions in Study" }, |
| 1065 | { 0x0020, 0x1005, "IS", "Images in Study" }, |
| 1066 | { 0x0020, 0x1020, "LO", "Reference" }, |
| 1067 | { 0x0020, 0x1040, "LO", "Position Reference Indicator" }, |
| 1068 | { 0x0020, 0x1041, "DS", "Slice Location" }, |
| 1069 | { 0x0020, 0x1070, "IS", "Other Study Numbers" }, |
| 1070 | { 0x0020, 0x1200, "IS", "Number of Patient Related Studies" }, |
| 1071 | { 0x0020, 0x1202, "IS", "Number of Patient Related Series" }, |
| 1072 | { 0x0020, 0x1204, "IS", "Number of Patient Related Images" }, |
| 1073 | { 0x0020, 0x1206, "IS", "Number of Study Related Series" }, |
| 1074 | { 0x0020, 0x1208, "IS", "Number of Study Related Series" }, |
| 1075 | { 0x0020, 0x3100, "LO", "Source Image IDs" }, |
| 1076 | { 0x0020, 0x3401, "LO", "Modifying Device ID" }, |
| 1077 | { 0x0020, 0x3402, "LO", "Modified Image ID" }, |
| 1078 | { 0x0020, 0x3403, "xs", "Modified Image Date" }, |
| 1079 | { 0x0020, 0x3404, "LO", "Modifying Device Manufacturer" }, |
| 1080 | { 0x0020, 0x3405, "xs", "Modified Image Time" }, |
| 1081 | { 0x0020, 0x3406, "xs", "Modified Image Description" }, |
| 1082 | { 0x0020, 0x4000, "LT", "Image Comments" }, |
| 1083 | { 0x0020, 0x5000, "AT", "Original Image Identification" }, |
| 1084 | { 0x0020, 0x5002, "LO", "Original Image Identification Nomenclature" }, |
| 1085 | { 0x0021, 0x0000, "xs", "?" }, |
| 1086 | { 0x0021, 0x0001, "xs", "?" }, |
| 1087 | { 0x0021, 0x0002, "xs", "?" }, |
| 1088 | { 0x0021, 0x0003, "xs", "?" }, |
| 1089 | { 0x0021, 0x0004, "DS", "VOI Position" }, |
| 1090 | { 0x0021, 0x0005, "xs", "?" }, |
| 1091 | { 0x0021, 0x0006, "IS", "CSI Matrix Size Original" }, |
| 1092 | { 0x0021, 0x0007, "xs", "?" }, |
| 1093 | { 0x0021, 0x0008, "DS", "Spatial Grid Shift" }, |
| 1094 | { 0x0021, 0x0009, "DS", "Signal Limits Minimum" }, |
| 1095 | { 0x0021, 0x0010, "xs", "?" }, |
| 1096 | { 0x0021, 0x0011, "xs", "?" }, |
| 1097 | { 0x0021, 0x0012, "xs", "?" }, |
| 1098 | { 0x0021, 0x0013, "xs", "?" }, |
| 1099 | { 0x0021, 0x0014, "xs", "?" }, |
| 1100 | { 0x0021, 0x0015, "xs", "?" }, |
| 1101 | { 0x0021, 0x0016, "xs", "?" }, |
| 1102 | { 0x0021, 0x0017, "DS", "EPI Operation Mode Flag" }, |
| 1103 | { 0x0021, 0x0018, "xs", "?" }, |
| 1104 | { 0x0021, 0x0019, "xs", "?" }, |
| 1105 | { 0x0021, 0x0020, "xs", "?" }, |
| 1106 | { 0x0021, 0x0021, "xs", "?" }, |
| 1107 | { 0x0021, 0x0022, "xs", "?" }, |
| 1108 | { 0x0021, 0x0024, "xs", "?" }, |
| 1109 | { 0x0021, 0x0025, "US", "?" }, |
| 1110 | { 0x0021, 0x0026, "IS", "Image Pixel Offset" }, |
| 1111 | { 0x0021, 0x0030, "xs", "?" }, |
| 1112 | { 0x0021, 0x0031, "xs", "?" }, |
| 1113 | { 0x0021, 0x0032, "xs", "?" }, |
| 1114 | { 0x0021, 0x0034, "xs", "?" }, |
| 1115 | { 0x0021, 0x0035, "SS", "Series From Which Prescribed" }, |
| 1116 | { 0x0021, 0x0036, "xs", "?" }, |
| 1117 | { 0x0021, 0x0037, "SS", "Screen Format" }, |
| 1118 | { 0x0021, 0x0039, "DS", "Slab Thickness" }, |
| 1119 | { 0x0021, 0x0040, "xs", "?" }, |
| 1120 | { 0x0021, 0x0041, "xs", "?" }, |
| 1121 | { 0x0021, 0x0042, "xs", "?" }, |
| 1122 | { 0x0021, 0x0043, "xs", "?" }, |
| 1123 | { 0x0021, 0x0044, "xs", "?" }, |
| 1124 | { 0x0021, 0x0045, "xs", "?" }, |
| 1125 | { 0x0021, 0x0046, "xs", "?" }, |
| 1126 | { 0x0021, 0x0047, "xs", "?" }, |
| 1127 | { 0x0021, 0x0048, "xs", "?" }, |
| 1128 | { 0x0021, 0x0049, "xs", "?" }, |
| 1129 | { 0x0021, 0x004a, "xs", "?" }, |
| 1130 | { 0x0021, 0x004e, "US", "?" }, |
| 1131 | { 0x0021, 0x004f, "xs", "?" }, |
| 1132 | { 0x0021, 0x0050, "xs", "?" }, |
| 1133 | { 0x0021, 0x0051, "xs", "?" }, |
| 1134 | { 0x0021, 0x0052, "xs", "?" }, |
| 1135 | { 0x0021, 0x0053, "xs", "?" }, |
| 1136 | { 0x0021, 0x0054, "xs", "?" }, |
| 1137 | { 0x0021, 0x0055, "xs", "?" }, |
| 1138 | { 0x0021, 0x0056, "xs", "?" }, |
| 1139 | { 0x0021, 0x0057, "xs", "?" }, |
| 1140 | { 0x0021, 0x0058, "xs", "?" }, |
| 1141 | { 0x0021, 0x0059, "xs", "?" }, |
| 1142 | { 0x0021, 0x005a, "SL", "Integer Slop" }, |
| 1143 | { 0x0021, 0x005b, "DS", "Float Slop" }, |
| 1144 | { 0x0021, 0x005c, "DS", "Float Slop" }, |
| 1145 | { 0x0021, 0x005d, "DS", "Float Slop" }, |
| 1146 | { 0x0021, 0x005e, "DS", "Float Slop" }, |
| 1147 | { 0x0021, 0x005f, "DS", "Float Slop" }, |
| 1148 | { 0x0021, 0x0060, "xs", "?" }, |
| 1149 | { 0x0021, 0x0061, "DS", "Image Normal" }, |
| 1150 | { 0x0021, 0x0062, "IS", "Reference Type Code" }, |
| 1151 | { 0x0021, 0x0063, "DS", "Image Distance" }, |
| 1152 | { 0x0021, 0x0065, "US", "Image Positioning History Mask" }, |
| 1153 | { 0x0021, 0x006a, "DS", "Image Row" }, |
| 1154 | { 0x0021, 0x006b, "DS", "Image Column" }, |
| 1155 | { 0x0021, 0x0070, "xs", "?" }, |
| 1156 | { 0x0021, 0x0071, "xs", "?" }, |
| 1157 | { 0x0021, 0x0072, "xs", "?" }, |
| 1158 | { 0x0021, 0x0073, "DS", "Second Repetition Time" }, |
| 1159 | { 0x0021, 0x0075, "DS", "Light Brightness" }, |
| 1160 | { 0x0021, 0x0076, "DS", "Light Contrast" }, |
| 1161 | { 0x0021, 0x007a, "IS", "Overlay Threshold" }, |
| 1162 | { 0x0021, 0x007b, "IS", "Surface Threshold" }, |
| 1163 | { 0x0021, 0x007c, "IS", "Grey Scale Threshold" }, |
| 1164 | { 0x0021, 0x0080, "xs", "?" }, |
| 1165 | { 0x0021, 0x0081, "DS", "Auto Window Level Alpha" }, |
| 1166 | { 0x0021, 0x0082, "xs", "?" }, |
| 1167 | { 0x0021, 0x0083, "DS", "Auto Window Level Window" }, |
| 1168 | { 0x0021, 0x0084, "DS", "Auto Window Level Level" }, |
| 1169 | { 0x0021, 0x0090, "xs", "?" }, |
| 1170 | { 0x0021, 0x0091, "xs", "?" }, |
| 1171 | { 0x0021, 0x0092, "xs", "?" }, |
| 1172 | { 0x0021, 0x0093, "xs", "?" }, |
| 1173 | { 0x0021, 0x0094, "DS", "EPI Change Value of X Component" }, |
| 1174 | { 0x0021, 0x0095, "DS", "EPI Change Value of Y Component" }, |
| 1175 | { 0x0021, 0x0096, "DS", "EPI Change Value of Z Component" }, |
| 1176 | { 0x0021, 0x00a0, "xs", "?" }, |
| 1177 | { 0x0021, 0x00a1, "DS", "?" }, |
| 1178 | { 0x0021, 0x00a2, "xs", "?" }, |
| 1179 | { 0x0021, 0x00a3, "LT", "?" }, |
| 1180 | { 0x0021, 0x00a4, "LT", "?" }, |
| 1181 | { 0x0021, 0x00a7, "LT", "?" }, |
| 1182 | { 0x0021, 0x00b0, "IS", "?" }, |
| 1183 | { 0x0021, 0x00c0, "IS", "?" }, |
| 1184 | { 0x0023, 0x0000, "xs", "?" }, |
| 1185 | { 0x0023, 0x0001, "SL", "Number Of Series In Study" }, |
| 1186 | { 0x0023, 0x0002, "SL", "Number Of Unarchived Series" }, |
| 1187 | { 0x0023, 0x0010, "xs", "?" }, |
| 1188 | { 0x0023, 0x0020, "xs", "?" }, |
| 1189 | { 0x0023, 0x0030, "xs", "?" }, |
| 1190 | { 0x0023, 0x0040, "xs", "?" }, |
| 1191 | { 0x0023, 0x0050, "xs", "?" }, |
| 1192 | { 0x0023, 0x0060, "xs", "?" }, |
| 1193 | { 0x0023, 0x0070, "xs", "?" }, |
| 1194 | { 0x0023, 0x0074, "SL", "Number Of Updates To Info" }, |
| 1195 | { 0x0023, 0x007d, "SS", "Indicates If Study Has Complete Info" }, |
| 1196 | { 0x0023, 0x0080, "xs", "?" }, |
| 1197 | { 0x0023, 0x0090, "xs", "?" }, |
| 1198 | { 0x0023, 0x00ff, "US", "?" }, |
| 1199 | { 0x0025, 0x0000, "UL", "Group Length" }, |
| 1200 | { 0x0025, 0x0006, "SS", "Last Pulse Sequence Used" }, |
| 1201 | { 0x0025, 0x0007, "SL", "Images In Series" }, |
| 1202 | { 0x0025, 0x0010, "SS", "Landmark Counter" }, |
| 1203 | { 0x0025, 0x0011, "SS", "Number Of Acquisitions" }, |
| 1204 | { 0x0025, 0x0014, "SL", "Indicates Number Of Updates To Info" }, |
| 1205 | { 0x0025, 0x0017, "SL", "Series Complete Flag" }, |
| 1206 | { 0x0025, 0x0018, "SL", "Number Of Images Archived" }, |
| 1207 | { 0x0025, 0x0019, "SL", "Last Image Number Used" }, |
| 1208 | { 0x0025, 0x001a, "SH", "Primary Receiver Suite And Host" }, |
| 1209 | { 0x0027, 0x0000, "US", "?" }, |
| 1210 | { 0x0027, 0x0006, "SL", "Image Archive Flag" }, |
| 1211 | { 0x0027, 0x0010, "SS", "Scout Type" }, |
| 1212 | { 0x0027, 0x0011, "UN", "?" }, |
| 1213 | { 0x0027, 0x0012, "IS", "?" }, |
| 1214 | { 0x0027, 0x0013, "IS", "?" }, |
| 1215 | { 0x0027, 0x0014, "IS", "?" }, |
| 1216 | { 0x0027, 0x0015, "IS", "?" }, |
| 1217 | { 0x0027, 0x0016, "LT", "?" }, |
| 1218 | { 0x0027, 0x001c, "SL", "Vma Mamp" }, |
| 1219 | { 0x0027, 0x001d, "SS", "Vma Phase" }, |
| 1220 | { 0x0027, 0x001e, "SL", "Vma Mod" }, |
| 1221 | { 0x0027, 0x001f, "SL", "Vma Clip" }, |
| 1222 | { 0x0027, 0x0020, "SS", "Smart Scan On Off Flag" }, |
| 1223 | { 0x0027, 0x0030, "SH", "Foreign Image Revision" }, |
| 1224 | { 0x0027, 0x0031, "SS", "Imaging Mode" }, |
| 1225 | { 0x0027, 0x0032, "SS", "Pulse Sequence" }, |
| 1226 | { 0x0027, 0x0033, "SL", "Imaging Options" }, |
| 1227 | { 0x0027, 0x0035, "SS", "Plane Type" }, |
| 1228 | { 0x0027, 0x0036, "SL", "Oblique Plane" }, |
| 1229 | { 0x0027, 0x0040, "SH", "RAS Letter Of Image Location" }, |
| 1230 | { 0x0027, 0x0041, "FL", "Image Location" }, |
| 1231 | { 0x0027, 0x0042, "FL", "Center R Coord Of Plane Image" }, |
| 1232 | { 0x0027, 0x0043, "FL", "Center A Coord Of Plane Image" }, |
| 1233 | { 0x0027, 0x0044, "FL", "Center S Coord Of Plane Image" }, |
| 1234 | { 0x0027, 0x0045, "FL", "Normal R Coord" }, |
| 1235 | { 0x0027, 0x0046, "FL", "Normal A Coord" }, |
| 1236 | { 0x0027, 0x0047, "FL", "Normal S Coord" }, |
| 1237 | { 0x0027, 0x0048, "FL", "R Coord Of Top Right Corner" }, |
| 1238 | { 0x0027, 0x0049, "FL", "A Coord Of Top Right Corner" }, |
| 1239 | { 0x0027, 0x004a, "FL", "S Coord Of Top Right Corner" }, |
| 1240 | { 0x0027, 0x004b, "FL", "R Coord Of Bottom Right Corner" }, |
| 1241 | { 0x0027, 0x004c, "FL", "A Coord Of Bottom Right Corner" }, |
| 1242 | { 0x0027, 0x004d, "FL", "S Coord Of Bottom Right Corner" }, |
| 1243 | { 0x0027, 0x0050, "FL", "Table Start Location" }, |
| 1244 | { 0x0027, 0x0051, "FL", "Table End Location" }, |
| 1245 | { 0x0027, 0x0052, "SH", "RAS Letter For Side Of Image" }, |
| 1246 | { 0x0027, 0x0053, "SH", "RAS Letter For Anterior Posterior" }, |
| 1247 | { 0x0027, 0x0054, "SH", "RAS Letter For Scout Start Loc" }, |
| 1248 | { 0x0027, 0x0055, "SH", "RAS Letter For Scout End Loc" }, |
| 1249 | { 0x0027, 0x0060, "FL", "Image Dimension X" }, |
| 1250 | { 0x0027, 0x0061, "FL", "Image Dimension Y" }, |
| 1251 | { 0x0027, 0x0062, "FL", "Number Of Excitations" }, |
| 1252 | { 0x0028, 0x0000, "UL", "Image Presentation Group Length" }, |
| 1253 | { 0x0028, 0x0002, "US", "Samples per Pixel" }, |
| 1254 | { 0x0028, 0x0004, "CS", "Photometric Interpretation" }, |
| 1255 | { 0x0028, 0x0005, "US", "Image Dimensions" }, |
| 1256 | { 0x0028, 0x0006, "US", "Planar Configuration" }, |
| 1257 | { 0x0028, 0x0008, "IS", "Number of Frames" }, |
| 1258 | { 0x0028, 0x0009, "AT", "Frame Increment Pointer" }, |
| 1259 | { 0x0028, 0x0010, "US", "Rows" }, |
| 1260 | { 0x0028, 0x0011, "US", "Columns" }, |
| 1261 | { 0x0028, 0x0012, "US", "Planes" }, |
| 1262 | { 0x0028, 0x0014, "US", "Ultrasound Color Data Present" }, |
| 1263 | { 0x0028, 0x0030, "DS", "Pixel Spacing" }, |
| 1264 | { 0x0028, 0x0031, "DS", "Zoom Factor" }, |
| 1265 | { 0x0028, 0x0032, "DS", "Zoom Center" }, |
| 1266 | { 0x0028, 0x0034, "IS", "Pixel Aspect Ratio" }, |
| 1267 | { 0x0028, 0x0040, "LO", "Image Format" }, |
| 1268 | { 0x0028, 0x0050, "LT", "Manipulated Image" }, |
| 1269 | { 0x0028, 0x0051, "CS", "Corrected Image" }, |
| 1270 | { 0x0028, 0x005f, "LO", "Compression Recognition Code" }, |
| 1271 | { 0x0028, 0x0060, "LO", "Compression Code" }, |
| 1272 | { 0x0028, 0x0061, "SH", "Compression Originator" }, |
| 1273 | { 0x0028, 0x0062, "SH", "Compression Label" }, |
| 1274 | { 0x0028, 0x0063, "SH", "Compression Description" }, |
| 1275 | { 0x0028, 0x0065, "LO", "Compression Sequence" }, |
| 1276 | { 0x0028, 0x0066, "AT", "Compression Step Pointers" }, |
| 1277 | { 0x0028, 0x0068, "US", "Repeat Interval" }, |
| 1278 | { 0x0028, 0x0069, "US", "Bits Grouped" }, |
| 1279 | { 0x0028, 0x0070, "US", "Perimeter Table" }, |
| 1280 | { 0x0028, 0x0071, "xs", "Perimeter Value" }, |
| 1281 | { 0x0028, 0x0080, "US", "Predictor Rows" }, |
| 1282 | { 0x0028, 0x0081, "US", "Predictor Columns" }, |
| 1283 | { 0x0028, 0x0082, "US", "Predictor Constants" }, |
| 1284 | { 0x0028, 0x0090, "LO", "Blocked Pixels" }, |
| 1285 | { 0x0028, 0x0091, "US", "Block Rows" }, |
| 1286 | { 0x0028, 0x0092, "US", "Block Columns" }, |
| 1287 | { 0x0028, 0x0093, "US", "Row Overlap" }, |
| 1288 | { 0x0028, 0x0094, "US", "Column Overlap" }, |
| 1289 | { 0x0028, 0x0100, "US", "Bits Allocated" }, |
| 1290 | { 0x0028, 0x0101, "US", "Bits Stored" }, |
| 1291 | { 0x0028, 0x0102, "US", "High Bit" }, |
| 1292 | { 0x0028, 0x0103, "US", "Pixel Representation" }, |
| 1293 | { 0x0028, 0x0104, "xs", "Smallest Valid Pixel Value" }, |
| 1294 | { 0x0028, 0x0105, "xs", "Largest Valid Pixel Value" }, |
| 1295 | { 0x0028, 0x0106, "xs", "Smallest Image Pixel Value" }, |
| 1296 | { 0x0028, 0x0107, "xs", "Largest Image Pixel Value" }, |
| 1297 | { 0x0028, 0x0108, "xs", "Smallest Pixel Value in Series" }, |
| 1298 | { 0x0028, 0x0109, "xs", "Largest Pixel Value in Series" }, |
| 1299 | { 0x0028, 0x0110, "xs", "Smallest Pixel Value in Plane" }, |
| 1300 | { 0x0028, 0x0111, "xs", "Largest Pixel Value in Plane" }, |
| 1301 | { 0x0028, 0x0120, "xs", "Pixel Padding Value" }, |
| 1302 | { 0x0028, 0x0200, "xs", "Image Location" }, |
| 1303 | { 0x0028, 0x0300, "CS", "Quality Control Image" }, |
| 1304 | { 0x0028, 0x0301, "CS", "Burned In Annotation" }, |
| 1305 | { 0x0028, 0x0400, "xs", "?" }, |
| 1306 | { 0x0028, 0x0401, "xs", "?" }, |
| 1307 | { 0x0028, 0x0402, "xs", "?" }, |
| 1308 | { 0x0028, 0x0403, "xs", "?" }, |
| 1309 | { 0x0028, 0x0404, "AT", "Details of Coefficients" }, |
| 1310 | { 0x0028, 0x0700, "LO", "DCT Label" }, |
| 1311 | { 0x0028, 0x0701, "LO", "Data Block Description" }, |
| 1312 | { 0x0028, 0x0702, "AT", "Data Block" }, |
| 1313 | { 0x0028, 0x0710, "US", "Normalization Factor Format" }, |
| 1314 | { 0x0028, 0x0720, "US", "Zonal Map Number Format" }, |
| 1315 | { 0x0028, 0x0721, "AT", "Zonal Map Location" }, |
| 1316 | { 0x0028, 0x0722, "US", "Zonal Map Format" }, |
| 1317 | { 0x0028, 0x0730, "US", "Adaptive Map Format" }, |
| 1318 | { 0x0028, 0x0740, "US", "Code Number Format" }, |
| 1319 | { 0x0028, 0x0800, "LO", "Code Label" }, |
| 1320 | { 0x0028, 0x0802, "US", "Number of Tables" }, |
| 1321 | { 0x0028, 0x0803, "AT", "Code Table Location" }, |
| 1322 | { 0x0028, 0x0804, "US", "Bits For Code Word" }, |
| 1323 | { 0x0028, 0x0808, "AT", "Image Data Location" }, |
| 1324 | { 0x0028, 0x1040, "CS", "Pixel Intensity Relationship" }, |
| 1325 | { 0x0028, 0x1041, "SS", "Pixel Intensity Relationship Sign" }, |
| 1326 | { 0x0028, 0x1050, "DS", "Window Center" }, |
| 1327 | { 0x0028, 0x1051, "DS", "Window Width" }, |
| 1328 | { 0x0028, 0x1052, "DS", "Rescale Intercept" }, |
| 1329 | { 0x0028, 0x1053, "DS", "Rescale Slope" }, |
| 1330 | { 0x0028, 0x1054, "LO", "Rescale Type" }, |
| 1331 | { 0x0028, 0x1055, "LO", "Window Center & Width Explanation" }, |
| 1332 | { 0x0028, 0x1080, "LO", "Gray Scale" }, |
| 1333 | { 0x0028, 0x1090, "CS", "Recommended Viewing Mode" }, |
| 1334 | { 0x0028, 0x1100, "xs", "Gray Lookup Table Descriptor" }, |
| 1335 | { 0x0028, 0x1101, "xs", "Red Palette Color Lookup Table Descriptor" }, |
| 1336 | { 0x0028, 0x1102, "xs", "Green Palette Color Lookup Table Descriptor" }, |
| 1337 | { 0x0028, 0x1103, "xs", "Blue Palette Color Lookup Table Descriptor" }, |
| 1338 | { 0x0028, 0x1111, "OW", "Large Red Palette Color Lookup Table Descriptor" }, |
| 1339 | { 0x0028, 0x1112, "OW", "Large Green Palette Color Lookup Table Descriptor" }, |
| 1340 | { 0x0028, 0x1113, "OW", "Large Blue Palette Color Lookup Table Descriptor" }, |
| 1341 | { 0x0028, 0x1199, "UI", "Palette Color Lookup Table UID" }, |
| 1342 | { 0x0028, 0x1200, "xs", "Gray Lookup Table Data" }, |
| 1343 | { 0x0028, 0x1201, "OW", "Red Palette Color Lookup Table Data" }, |
| 1344 | { 0x0028, 0x1202, "OW", "Green Palette Color Lookup Table Data" }, |
| 1345 | { 0x0028, 0x1203, "OW", "Blue Palette Color Lookup Table Data" }, |
| 1346 | { 0x0028, 0x1211, "OW", "Large Red Palette Color Lookup Table Data" }, |
| 1347 | { 0x0028, 0x1212, "OW", "Large Green Palette Color Lookup Table Data" }, |
| 1348 | { 0x0028, 0x1213, "OW", "Large Blue Palette Color Lookup Table Data" }, |
| 1349 | { 0x0028, 0x1214, "UI", "Large Palette Color Lookup Table UID" }, |
| 1350 | { 0x0028, 0x1221, "OW", "Segmented Red Palette Color Lookup Table Data" }, |
| 1351 | { 0x0028, 0x1222, "OW", "Segmented Green Palette Color Lookup Table Data" }, |
| 1352 | { 0x0028, 0x1223, "OW", "Segmented Blue Palette Color Lookup Table Data" }, |
| 1353 | { 0x0028, 0x1300, "CS", "Implant Present" }, |
| 1354 | { 0x0028, 0x2110, "CS", "Lossy Image Compression" }, |
| 1355 | { 0x0028, 0x2112, "DS", "Lossy Image Compression Ratio" }, |
| 1356 | { 0x0028, 0x3000, "SQ", "Modality LUT Sequence" }, |
| 1357 | { 0x0028, 0x3002, "US", "LUT Descriptor" }, |
| 1358 | { 0x0028, 0x3003, "LO", "LUT Explanation" }, |
| 1359 | { 0x0028, 0x3004, "LO", "Modality LUT Type" }, |
| 1360 | { 0x0028, 0x3006, "US", "LUT Data" }, |
| 1361 | { 0x0028, 0x3010, "xs", "VOI LUT Sequence" }, |
| 1362 | { 0x0028, 0x4000, "LT", "Image Presentation Comments" }, |
| 1363 | { 0x0028, 0x5000, "SQ", "Biplane Acquisition Sequence" }, |
| 1364 | { 0x0028, 0x6010, "US", "Representative Frame Number" }, |
| 1365 | { 0x0028, 0x6020, "US", "Frame Numbers of Interest" }, |
| 1366 | { 0x0028, 0x6022, "LO", "Frame of Interest Description" }, |
| 1367 | { 0x0028, 0x6030, "US", "Mask Pointer" }, |
| 1368 | { 0x0028, 0x6040, "US", "R Wave Pointer" }, |
| 1369 | { 0x0028, 0x6100, "SQ", "Mask Subtraction Sequence" }, |
| 1370 | { 0x0028, 0x6101, "CS", "Mask Operation" }, |
| 1371 | { 0x0028, 0x6102, "US", "Applicable Frame Range" }, |
| 1372 | { 0x0028, 0x6110, "US", "Mask Frame Numbers" }, |
| 1373 | { 0x0028, 0x6112, "US", "Contrast Frame Averaging" }, |
| 1374 | { 0x0028, 0x6114, "FL", "Mask Sub-Pixel Shift" }, |
| 1375 | { 0x0028, 0x6120, "SS", "TID Offset" }, |
| 1376 | { 0x0028, 0x6190, "ST", "Mask Operation Explanation" }, |
| 1377 | { 0x0029, 0x0000, "xs", "?" }, |
| 1378 | { 0x0029, 0x0001, "xs", "?" }, |
| 1379 | { 0x0029, 0x0002, "xs", "?" }, |
| 1380 | { 0x0029, 0x0003, "xs", "?" }, |
| 1381 | { 0x0029, 0x0004, "xs", "?" }, |
| 1382 | { 0x0029, 0x0005, "xs", "?" }, |
| 1383 | { 0x0029, 0x0006, "xs", "?" }, |
| 1384 | { 0x0029, 0x0007, "SL", "Lower Range Of Pixels" }, |
| 1385 | { 0x0029, 0x0008, "SH", "Lower Range Of Pixels" }, |
| 1386 | { 0x0029, 0x0009, "SH", "Lower Range Of Pixels" }, |
| 1387 | { 0x0029, 0x000a, "SS", "Lower Range Of Pixels" }, |
| 1388 | { 0x0029, 0x000c, "xs", "?" }, |
| 1389 | { 0x0029, 0x000e, "CS", "Zoom Enable Status" }, |
| 1390 | { 0x0029, 0x000f, "CS", "Zoom Select Status" }, |
| 1391 | { 0x0029, 0x0010, "xs", "?" }, |
| 1392 | { 0x0029, 0x0011, "xs", "?" }, |
| 1393 | { 0x0029, 0x0013, "LT", "?" }, |
| 1394 | { 0x0029, 0x0015, "xs", "?" }, |
| 1395 | { 0x0029, 0x0016, "SL", "Lower Range Of Pixels" }, |
| 1396 | { 0x0029, 0x0017, "SL", "Lower Range Of Pixels" }, |
| 1397 | { 0x0029, 0x0018, "SL", "Upper Range Of Pixels" }, |
| 1398 | { 0x0029, 0x001a, "SL", "Length Of Total Info In Bytes" }, |
| 1399 | { 0x0029, 0x001e, "xs", "?" }, |
| 1400 | { 0x0029, 0x001f, "xs", "?" }, |
| 1401 | { 0x0029, 0x0020, "xs", "?" }, |
| 1402 | { 0x0029, 0x0022, "IS", "Pixel Quality Value" }, |
| 1403 | { 0x0029, 0x0025, "LT", "Processed Pixel Data Quality" }, |
| 1404 | { 0x0029, 0x0026, "SS", "Version Of Info Structure" }, |
| 1405 | { 0x0029, 0x0030, "xs", "?" }, |
| 1406 | { 0x0029, 0x0031, "xs", "?" }, |
| 1407 | { 0x0029, 0x0032, "xs", "?" }, |
| 1408 | { 0x0029, 0x0033, "xs", "?" }, |
| 1409 | { 0x0029, 0x0034, "xs", "?" }, |
| 1410 | { 0x0029, 0x0035, "SL", "Advantage Comp Underflow" }, |
| 1411 | { 0x0029, 0x0038, "US", "?" }, |
| 1412 | { 0x0029, 0x0040, "xs", "?" }, |
| 1413 | { 0x0029, 0x0041, "DS", "Magnifying Glass Rectangle" }, |
| 1414 | { 0x0029, 0x0043, "DS", "Magnifying Glass Factor" }, |
| 1415 | { 0x0029, 0x0044, "US", "Magnifying Glass Function" }, |
| 1416 | { 0x0029, 0x004e, "CS", "Magnifying Glass Enable Status" }, |
| 1417 | { 0x0029, 0x004f, "CS", "Magnifying Glass Select Status" }, |
| 1418 | { 0x0029, 0x0050, "xs", "?" }, |
| 1419 | { 0x0029, 0x0051, "LT", "Exposure Code" }, |
| 1420 | { 0x0029, 0x0052, "LT", "Sort Code" }, |
| 1421 | { 0x0029, 0x0053, "LT", "?" }, |
| 1422 | { 0x0029, 0x0060, "xs", "?" }, |
| 1423 | { 0x0029, 0x0061, "xs", "?" }, |
| 1424 | { 0x0029, 0x0067, "LT", "?" }, |
| 1425 | { 0x0029, 0x0070, "xs", "?" }, |
| 1426 | { 0x0029, 0x0071, "xs", "?" }, |
| 1427 | { 0x0029, 0x0072, "xs", "?" }, |
| 1428 | { 0x0029, 0x0077, "CS", "Window Select Status" }, |
| 1429 | { 0x0029, 0x0078, "LT", "ECG Display Printing ID" }, |
| 1430 | { 0x0029, 0x0079, "CS", "ECG Display Printing" }, |
| 1431 | { 0x0029, 0x007e, "CS", "ECG Display Printing Enable Status" }, |
| 1432 | { 0x0029, 0x007f, "CS", "ECG Display Printing Select Status" }, |
| 1433 | { 0x0029, 0x0080, "xs", "?" }, |
| 1434 | { 0x0029, 0x0081, "xs", "?" }, |
| 1435 | { 0x0029, 0x0082, "IS", "View Zoom" }, |
| 1436 | { 0x0029, 0x0083, "IS", "View Transform" }, |
| 1437 | { 0x0029, 0x008e, "CS", "Physiological Display Enable Status" }, |
| 1438 | { 0x0029, 0x008f, "CS", "Physiological Display Select Status" }, |
| 1439 | { 0x0029, 0x0090, "IS", "?" }, |
| 1440 | { 0x0029, 0x0099, "LT", "Shutter Type" }, |
| 1441 | { 0x0029, 0x00a0, "US", "Rows of Rectangular Shutter" }, |
| 1442 | { 0x0029, 0x00a1, "US", "Columns of Rectangular Shutter" }, |
| 1443 | { 0x0029, 0x00a2, "US", "Origin of Rectangular Shutter" }, |
| 1444 | { 0x0029, 0x00b0, "US", "Radius of Circular Shutter" }, |
| 1445 | { 0x0029, 0x00b2, "US", "Origin of Circular Shutter" }, |
| 1446 | { 0x0029, 0x00c0, "LT", "Functional Shutter ID" }, |
| 1447 | { 0x0029, 0x00c1, "xs", "?" }, |
| 1448 | { 0x0029, 0x00c3, "IS", "Scan Resolution" }, |
| 1449 | { 0x0029, 0x00c4, "IS", "Field of View" }, |
| 1450 | { 0x0029, 0x00c5, "LT", "Field Of Shutter Rectangle" }, |
| 1451 | { 0x0029, 0x00ce, "CS", "Shutter Enable Status" }, |
| 1452 | { 0x0029, 0x00cf, "CS", "Shutter Select Status" }, |
| 1453 | { 0x0029, 0x00d0, "IS", "?" }, |
| 1454 | { 0x0029, 0x00d1, "IS", "?" }, |
| 1455 | { 0x0029, 0x00d5, "LT", "Slice Thickness" }, |
| 1456 | { 0x0031, 0x0010, "LT", "Request UID" }, |
| 1457 | { 0x0031, 0x0012, "LT", "Examination Reason" }, |
| 1458 | { 0x0031, 0x0030, "DA", "Requested Date" }, |
| 1459 | { 0x0031, 0x0032, "TM", "Worklist Request Start Time" }, |
| 1460 | { 0x0031, 0x0033, "TM", "Worklist Request End Time" }, |
| 1461 | { 0x0031, 0x0045, "LT", "Requesting Physician" }, |
| 1462 | { 0x0031, 0x004a, "TM", "Requested Time" }, |
| 1463 | { 0x0031, 0x0050, "LT", "Requested Physician" }, |
| 1464 | { 0x0031, 0x0080, "LT", "Requested Location" }, |
| 1465 | { 0x0032, 0x0000, "UL", "Study Group Length" }, |
| 1466 | { 0x0032, 0x000a, "CS", "Study Status ID" }, |
| 1467 | { 0x0032, 0x000c, "CS", "Study Priority ID" }, |
| 1468 | { 0x0032, 0x0012, "LO", "Study ID Issuer" }, |
| 1469 | { 0x0032, 0x0032, "DA", "Study Verified Date" }, |
| 1470 | { 0x0032, 0x0033, "TM", "Study Verified Time" }, |
| 1471 | { 0x0032, 0x0034, "DA", "Study Read Date" }, |
| 1472 | { 0x0032, 0x0035, "TM", "Study Read Time" }, |
| 1473 | { 0x0032, 0x1000, "DA", "Scheduled Study Start Date" }, |
| 1474 | { 0x0032, 0x1001, "TM", "Scheduled Study Start Time" }, |
| 1475 | { 0x0032, 0x1010, "DA", "Scheduled Study Stop Date" }, |
| 1476 | { 0x0032, 0x1011, "TM", "Scheduled Study Stop Time" }, |
| 1477 | { 0x0032, 0x1020, "LO", "Scheduled Study Location" }, |
| 1478 | { 0x0032, 0x1021, "AE", "Scheduled Study Location AE Title(s)" }, |
| 1479 | { 0x0032, 0x1030, "LO", "Reason for Study" }, |
| 1480 | { 0x0032, 0x1032, "PN", "Requesting Physician" }, |
| 1481 | { 0x0032, 0x1033, "LO", "Requesting Service" }, |
| 1482 | { 0x0032, 0x1040, "DA", "Study Arrival Date" }, |
| 1483 | { 0x0032, 0x1041, "TM", "Study Arrival Time" }, |
| 1484 | { 0x0032, 0x1050, "DA", "Study Completion Date" }, |
| 1485 | { 0x0032, 0x1051, "TM", "Study Completion Time" }, |
| 1486 | { 0x0032, 0x1055, "CS", "Study Component Status ID" }, |
| 1487 | { 0x0032, 0x1060, "LO", "Requested Procedure Description" }, |
| 1488 | { 0x0032, 0x1064, "SQ", "Requested Procedure Code Sequence" }, |
| 1489 | { 0x0032, 0x1070, "LO", "Requested Contrast Agent" }, |
| 1490 | { 0x0032, 0x4000, "LT", "Study Comments" }, |
| 1491 | { 0x0033, 0x0001, "UN", "?" }, |
| 1492 | { 0x0033, 0x0002, "UN", "?" }, |
| 1493 | { 0x0033, 0x0005, "UN", "?" }, |
| 1494 | { 0x0033, 0x0006, "UN", "?" }, |
| 1495 | { 0x0033, 0x0010, "LT", "Patient Study UID" }, |
| 1496 | { 0x0037, 0x0010, "LO", "ReferringDepartment" }, |
| 1497 | { 0x0037, 0x0020, "US", "ScreenNumber" }, |
| 1498 | { 0x0037, 0x0040, "SH", "LeftOrientation" }, |
| 1499 | { 0x0037, 0x0042, "SH", "RightOrientation" }, |
| 1500 | { 0x0037, 0x0050, "CS", "Inversion" }, |
| 1501 | { 0x0037, 0x0060, "US", "DSA" }, |
| 1502 | { 0x0038, 0x0000, "UL", "Visit Group Length" }, |
| 1503 | { 0x0038, 0x0004, "SQ", "Referenced Patient Alias Sequence" }, |
| 1504 | { 0x0038, 0x0008, "CS", "Visit Status ID" }, |
| 1505 | { 0x0038, 0x0010, "LO", "Admission ID" }, |
| 1506 | { 0x0038, 0x0011, "LO", "Issuer of Admission ID" }, |
| 1507 | { 0x0038, 0x0016, "LO", "Route of Admissions" }, |
| 1508 | { 0x0038, 0x001a, "DA", "Scheduled Admission Date" }, |
| 1509 | { 0x0038, 0x001b, "TM", "Scheduled Admission Time" }, |
| 1510 | { 0x0038, 0x001c, "DA", "Scheduled Discharge Date" }, |
| 1511 | { 0x0038, 0x001d, "TM", "Scheduled Discharge Time" }, |
| 1512 | { 0x0038, 0x001e, "LO", "Scheduled Patient Institution Residence" }, |
| 1513 | { 0x0038, 0x0020, "DA", "Admitting Date" }, |
| 1514 | { 0x0038, 0x0021, "TM", "Admitting Time" }, |
| 1515 | { 0x0038, 0x0030, "DA", "Discharge Date" }, |
| 1516 | { 0x0038, 0x0032, "TM", "Discharge Time" }, |
| 1517 | { 0x0038, 0x0040, "LO", "Discharge Diagnosis Description" }, |
| 1518 | { 0x0038, 0x0044, "SQ", "Discharge Diagnosis Code Sequence" }, |
| 1519 | { 0x0038, 0x0050, "LO", "Special Needs" }, |
| 1520 | { 0x0038, 0x0300, "LO", "Current Patient Location" }, |
| 1521 | { 0x0038, 0x0400, "LO", "Patient's Institution Residence" }, |
| 1522 | { 0x0038, 0x0500, "LO", "Patient State" }, |
| 1523 | { 0x0038, 0x4000, "LT", "Visit Comments" }, |
| 1524 | { 0x0039, 0x0080, "IS", "Private Entity Number" }, |
| 1525 | { 0x0039, 0x0085, "DA", "Private Entity Date" }, |
| 1526 | { 0x0039, 0x0090, "TM", "Private Entity Time" }, |
| 1527 | { 0x0039, 0x0095, "LO", "Private Entity Launch Command" }, |
| 1528 | { 0x0039, 0x00aa, "CS", "Private Entity Type" }, |
| 1529 | { 0x003a, 0x0002, "SQ", "Waveform Sequence" }, |
| 1530 | { 0x003a, 0x0005, "US", "Waveform Number of Channels" }, |
| 1531 | { 0x003a, 0x0010, "UL", "Waveform Number of Samples" }, |
| 1532 | { 0x003a, 0x001a, "DS", "Sampling Frequency" }, |
| 1533 | { 0x003a, 0x0020, "SH", "Group Label" }, |
| 1534 | { 0x003a, 0x0103, "CS", "Waveform Sample Value Representation" }, |
| 1535 | { 0x003a, 0x0122, "OB", "Waveform Padding Value" }, |
| 1536 | { 0x003a, 0x0200, "SQ", "Channel Definition" }, |
| 1537 | { 0x003a, 0x0202, "IS", "Waveform Channel Number" }, |
| 1538 | { 0x003a, 0x0203, "SH", "Channel Label" }, |
| 1539 | { 0x003a, 0x0205, "CS", "Channel Status" }, |
| 1540 | { 0x003a, 0x0208, "SQ", "Channel Source" }, |
| 1541 | { 0x003a, 0x0209, "SQ", "Channel Source Modifiers" }, |
| 1542 | { 0x003a, 0x020a, "SQ", "Differential Channel Source" }, |
| 1543 | { 0x003a, 0x020b, "SQ", "Differential Channel Source Modifiers" }, |
| 1544 | { 0x003a, 0x0210, "DS", "Channel Sensitivity" }, |
| 1545 | { 0x003a, 0x0211, "SQ", "Channel Sensitivity Units" }, |
| 1546 | { 0x003a, 0x0212, "DS", "Channel Sensitivity Correction Factor" }, |
| 1547 | { 0x003a, 0x0213, "DS", "Channel Baseline" }, |
| 1548 | { 0x003a, 0x0214, "DS", "Channel Time Skew" }, |
| 1549 | { 0x003a, 0x0215, "DS", "Channel Sample Skew" }, |
| 1550 | { 0x003a, 0x0216, "OB", "Channel Minimum Value" }, |
| 1551 | { 0x003a, 0x0217, "OB", "Channel Maximum Value" }, |
| 1552 | { 0x003a, 0x0218, "DS", "Channel Offset" }, |
| 1553 | { 0x003a, 0x021a, "US", "Bits Per Sample" }, |
| 1554 | { 0x003a, 0x0220, "DS", "Filter Low Frequency" }, |
| 1555 | { 0x003a, 0x0221, "DS", "Filter High Frequency" }, |
| 1556 | { 0x003a, 0x0222, "DS", "Notch Filter Frequency" }, |
| 1557 | { 0x003a, 0x0223, "DS", "Notch Filter Bandwidth" }, |
| 1558 | { 0x003a, 0x1000, "OB", "Waveform Data" }, |
| 1559 | { 0x0040, 0x0001, "AE", "Scheduled Station AE Title" }, |
| 1560 | { 0x0040, 0x0002, "DA", "Scheduled Procedure Step Start Date" }, |
| 1561 | { 0x0040, 0x0003, "TM", "Scheduled Procedure Step Start Time" }, |
| 1562 | { 0x0040, 0x0004, "DA", "Scheduled Procedure Step End Date" }, |
| 1563 | { 0x0040, 0x0005, "TM", "Scheduled Procedure Step End Time" }, |
| 1564 | { 0x0040, 0x0006, "PN", "Scheduled Performing Physician Name" }, |
| 1565 | { 0x0040, 0x0007, "LO", "Scheduled Procedure Step Description" }, |
| 1566 | { 0x0040, 0x0008, "SQ", "Scheduled Action Item Code Sequence" }, |
| 1567 | { 0x0040, 0x0009, "SH", "Scheduled Procedure Step ID" }, |
| 1568 | { 0x0040, 0x0010, "SH", "Scheduled Station Name" }, |
| 1569 | { 0x0040, 0x0011, "SH", "Scheduled Procedure Step Location" }, |
| 1570 | { 0x0040, 0x0012, "LO", "Pre-Medication" }, |
| 1571 | { 0x0040, 0x0020, "CS", "Scheduled Procedure Step Status" }, |
| 1572 | { 0x0040, 0x0100, "SQ", "Scheduled Procedure Step Sequence" }, |
| 1573 | { 0x0040, 0x0302, "US", "Entrance Dose" }, |
| 1574 | { 0x0040, 0x0303, "US", "Exposed Area" }, |
| 1575 | { 0x0040, 0x0306, "DS", "Distance Source to Entrance" }, |
| 1576 | { 0x0040, 0x0307, "DS", "Distance Source to Support" }, |
| 1577 | { 0x0040, 0x0310, "ST", "Comments On Radiation Dose" }, |
| 1578 | { 0x0040, 0x0312, "DS", "X-Ray Output" }, |
| 1579 | { 0x0040, 0x0314, "DS", "Half Value Layer" }, |
| 1580 | { 0x0040, 0x0316, "DS", "Organ Dose" }, |
| 1581 | { 0x0040, 0x0318, "CS", "Organ Exposed" }, |
| 1582 | { 0x0040, 0x0400, "LT", "Comments On Scheduled Procedure Step" }, |
| 1583 | { 0x0040, 0x050a, "LO", "Specimen Accession Number" }, |
| 1584 | { 0x0040, 0x0550, "SQ", "Specimen Sequence" }, |
| 1585 | { 0x0040, 0x0551, "LO", "Specimen Identifier" }, |
| 1586 | { 0x0040, 0x0552, "SQ", "Specimen Description Sequence" }, |
| 1587 | { 0x0040, 0x0553, "ST", "Specimen Description" }, |
| 1588 | { 0x0040, 0x0555, "SQ", "Acquisition Context Sequence" }, |
| 1589 | { 0x0040, 0x0556, "ST", "Acquisition Context Description" }, |
| 1590 | { 0x0040, 0x059a, "SQ", "Specimen Type Code Sequence" }, |
| 1591 | { 0x0040, 0x06fa, "LO", "Slide Identifier" }, |
| 1592 | { 0x0040, 0x071a, "SQ", "Image Center Point Coordinates Sequence" }, |
| 1593 | { 0x0040, 0x072a, "DS", "X Offset In Slide Coordinate System" }, |
| 1594 | { 0x0040, 0x073a, "DS", "Y Offset In Slide Coordinate System" }, |
| 1595 | { 0x0040, 0x074a, "DS", "Z Offset In Slide Coordinate System" }, |
| 1596 | { 0x0040, 0x08d8, "SQ", "Pixel Spacing Sequence" }, |
| 1597 | { 0x0040, 0x08da, "SQ", "Coordinate System Axis Code Sequence" }, |
| 1598 | { 0x0040, 0x08ea, "SQ", "Measurement Units Code Sequence" }, |
| 1599 | { 0x0040, 0x09f8, "SQ", "Vital Stain Code Sequence" }, |
| 1600 | { 0x0040, 0x1001, "SH", "Requested Procedure ID" }, |
| 1601 | { 0x0040, 0x1002, "LO", "Reason For Requested Procedure" }, |
| 1602 | { 0x0040, 0x1003, "SH", "Requested Procedure Priority" }, |
| 1603 | { 0x0040, 0x1004, "LO", "Patient Transport Arrangements" }, |
| 1604 | { 0x0040, 0x1005, "LO", "Requested Procedure Location" }, |
| 1605 | { 0x0040, 0x1006, "SH", "Placer Order Number of Procedure" }, |
| 1606 | { 0x0040, 0x1007, "SH", "Filler Order Number of Procedure" }, |
| 1607 | { 0x0040, 0x1008, "LO", "Confidentiality Code" }, |
| 1608 | { 0x0040, 0x1009, "SH", "Reporting Priority" }, |
| 1609 | { 0x0040, 0x1010, "PN", "Names of Intended Recipients of Results" }, |
| 1610 | { 0x0040, 0x1400, "LT", "Requested Procedure Comments" }, |
| 1611 | { 0x0040, 0x2001, "LO", "Reason For Imaging Service Request" }, |
| 1612 | { 0x0040, 0x2004, "DA", "Issue Date of Imaging Service Request" }, |
| 1613 | { 0x0040, 0x2005, "TM", "Issue Time of Imaging Service Request" }, |
| 1614 | { 0x0040, 0x2006, "SH", "Placer Order Number of Imaging Service Request" }, |
| 1615 | { 0x0040, 0x2007, "SH", "Filler Order Number of Imaging Service Request" }, |
| 1616 | { 0x0040, 0x2008, "PN", "Order Entered By" }, |
| 1617 | { 0x0040, 0x2009, "SH", "Order Enterer Location" }, |
| 1618 | { 0x0040, 0x2010, "SH", "Order Callback Phone Number" }, |
| 1619 | { 0x0040, 0x2400, "LT", "Imaging Service Request Comments" }, |
| 1620 | { 0x0040, 0x3001, "LO", "Confidentiality Constraint On Patient Data" }, |
| 1621 | { 0x0040, 0xa007, "CS", "Findings Flag" }, |
| 1622 | { 0x0040, 0xa020, "SQ", "Findings Sequence" }, |
| 1623 | { 0x0040, 0xa021, "UI", "Findings Group UID" }, |
| 1624 | { 0x0040, 0xa022, "UI", "Referenced Findings Group UID" }, |
| 1625 | { 0x0040, 0xa023, "DA", "Findings Group Recording Date" }, |
| 1626 | { 0x0040, 0xa024, "TM", "Findings Group Recording Time" }, |
| 1627 | { 0x0040, 0xa026, "SQ", "Findings Source Category Code Sequence" }, |
| 1628 | { 0x0040, 0xa027, "LO", "Documenting Organization" }, |
| 1629 | { 0x0040, 0xa028, "SQ", "Documenting Organization Identifier Code Sequence" }, |
| 1630 | { 0x0040, 0xa032, "LO", "History Reliability Qualifier Description" }, |
| 1631 | { 0x0040, 0xa043, "SQ", "Concept Name Code Sequence" }, |
| 1632 | { 0x0040, 0xa047, "LO", "Measurement Precision Description" }, |
| 1633 | { 0x0040, 0xa057, "CS", "Urgency or Priority Alerts" }, |
| 1634 | { 0x0040, 0xa060, "LO", "Sequencing Indicator" }, |
| 1635 | { 0x0040, 0xa066, "SQ", "Document Identifier Code Sequence" }, |
| 1636 | { 0x0040, 0xa067, "PN", "Document Author" }, |
| 1637 | { 0x0040, 0xa068, "SQ", "Document Author Identifier Code Sequence" }, |
| 1638 | { 0x0040, 0xa070, "SQ", "Identifier Code Sequence" }, |
| 1639 | { 0x0040, 0xa073, "LO", "Object String Identifier" }, |
| 1640 | { 0x0040, 0xa074, "OB", "Object Binary Identifier" }, |
| 1641 | { 0x0040, 0xa075, "PN", "Documenting Observer" }, |
| 1642 | { 0x0040, 0xa076, "SQ", "Documenting Observer Identifier Code Sequence" }, |
| 1643 | { 0x0040, 0xa078, "SQ", "Observation Subject Identifier Code Sequence" }, |
| 1644 | { 0x0040, 0xa080, "SQ", "Person Identifier Code Sequence" }, |
| 1645 | { 0x0040, 0xa085, "SQ", "Procedure Identifier Code Sequence" }, |
| 1646 | { 0x0040, 0xa088, "LO", "Object Directory String Identifier" }, |
| 1647 | { 0x0040, 0xa089, "OB", "Object Directory Binary Identifier" }, |
| 1648 | { 0x0040, 0xa090, "CS", "History Reliability Qualifier" }, |
| 1649 | { 0x0040, 0xa0a0, "CS", "Referenced Type of Data" }, |
| 1650 | { 0x0040, 0xa0b0, "US", "Referenced Waveform Channels" }, |
| 1651 | { 0x0040, 0xa110, "DA", "Date of Document or Verbal Transaction" }, |
| 1652 | { 0x0040, 0xa112, "TM", "Time of Document Creation or Verbal Transaction" }, |
| 1653 | { 0x0040, 0xa121, "DA", "Date" }, |
| 1654 | { 0x0040, 0xa122, "TM", "Time" }, |
| 1655 | { 0x0040, 0xa123, "PN", "Person Name" }, |
| 1656 | { 0x0040, 0xa124, "SQ", "Referenced Person Sequence" }, |
| 1657 | { 0x0040, 0xa125, "CS", "Report Status ID" }, |
| 1658 | { 0x0040, 0xa130, "CS", "Temporal Range Type" }, |
| 1659 | { 0x0040, 0xa132, "UL", "Referenced Sample Offsets" }, |
| 1660 | { 0x0040, 0xa136, "US", "Referenced Frame Numbers" }, |
| 1661 | { 0x0040, 0xa138, "DS", "Referenced Time Offsets" }, |
| 1662 | { 0x0040, 0xa13a, "DT", "Referenced Datetime" }, |
| 1663 | { 0x0040, 0xa160, "UT", "Text Value" }, |
| 1664 | { 0x0040, 0xa167, "SQ", "Observation Category Code Sequence" }, |
| 1665 | { 0x0040, 0xa168, "SQ", "Concept Code Sequence" }, |
| 1666 | { 0x0040, 0xa16a, "ST", "Bibliographic Citation" }, |
| 1667 | { 0x0040, 0xa170, "CS", "Observation Class" }, |
| 1668 | { 0x0040, 0xa171, "UI", "Observation UID" }, |
| 1669 | { 0x0040, 0xa172, "UI", "Referenced Observation UID" }, |
| 1670 | { 0x0040, 0xa173, "CS", "Referenced Observation Class" }, |
| 1671 | { 0x0040, 0xa174, "CS", "Referenced Object Observation Class" }, |
| 1672 | { 0x0040, 0xa180, "US", "Annotation Group Number" }, |
| 1673 | { 0x0040, 0xa192, "DA", "Observation Date" }, |
| 1674 | { 0x0040, 0xa193, "TM", "Observation Time" }, |
| 1675 | { 0x0040, 0xa194, "CS", "Measurement Automation" }, |
| 1676 | { 0x0040, 0xa195, "SQ", "Concept Name Code Sequence Modifier" }, |
| 1677 | { 0x0040, 0xa224, "ST", "Identification Description" }, |
| 1678 | { 0x0040, 0xa290, "CS", "Coordinates Set Geometric Type" }, |
| 1679 | { 0x0040, 0xa296, "SQ", "Algorithm Code Sequence" }, |
| 1680 | { 0x0040, 0xa297, "ST", "Algorithm Description" }, |
| 1681 | { 0x0040, 0xa29a, "SL", "Pixel Coordinates Set" }, |
| 1682 | { 0x0040, 0xa300, "SQ", "Measured Value Sequence" }, |
| 1683 | { 0x0040, 0xa307, "PN", "Current Observer" }, |
| 1684 | { 0x0040, 0xa30a, "DS", "Numeric Value" }, |
| 1685 | { 0x0040, 0xa313, "SQ", "Referenced Accession Sequence" }, |
| 1686 | { 0x0040, 0xa33a, "ST", "Report Status Comment" }, |
| 1687 | { 0x0040, 0xa340, "SQ", "Procedure Context Sequence" }, |
| 1688 | { 0x0040, 0xa352, "PN", "Verbal Source" }, |
| 1689 | { 0x0040, 0xa353, "ST", "Address" }, |
| 1690 | { 0x0040, 0xa354, "LO", "Telephone Number" }, |
| 1691 | { 0x0040, 0xa358, "SQ", "Verbal Source Identifier Code Sequence" }, |
| 1692 | { 0x0040, 0xa380, "SQ", "Report Detail Sequence" }, |
| 1693 | { 0x0040, 0xa402, "UI", "Observation Subject UID" }, |
| 1694 | { 0x0040, 0xa403, "CS", "Observation Subject Class" }, |
| 1695 | { 0x0040, 0xa404, "SQ", "Observation Subject Type Code Sequence" }, |
| 1696 | { 0x0040, 0xa600, "CS", "Observation Subject Context Flag" }, |
| 1697 | { 0x0040, 0xa601, "CS", "Observer Context Flag" }, |
| 1698 | { 0x0040, 0xa603, "CS", "Procedure Context Flag" }, |
| 1699 | { 0x0040, 0xa730, "SQ", "Observations Sequence" }, |
| 1700 | { 0x0040, 0xa731, "SQ", "Relationship Sequence" }, |
| 1701 | { 0x0040, 0xa732, "SQ", "Relationship Type Code Sequence" }, |
| 1702 | { 0x0040, 0xa744, "SQ", "Language Code Sequence" }, |
| 1703 | { 0x0040, 0xa992, "ST", "Uniform Resource Locator" }, |
| 1704 | { 0x0040, 0xb020, "SQ", "Annotation Sequence" }, |
| 1705 | { 0x0040, 0xdb73, "SQ", "Relationship Type Code Sequence Modifier" }, |
| 1706 | { 0x0041, 0x0000, "LT", "Papyrus Comments" }, |
| 1707 | { 0x0041, 0x0010, "xs", "?" }, |
| 1708 | { 0x0041, 0x0011, "xs", "?" }, |
| 1709 | { 0x0041, 0x0012, "UL", "Pixel Offset" }, |
| 1710 | { 0x0041, 0x0013, "SQ", "Image Identifier Sequence" }, |
| 1711 | { 0x0041, 0x0014, "SQ", "External File Reference Sequence" }, |
| 1712 | { 0x0041, 0x0015, "US", "Number of Images" }, |
| 1713 | { 0x0041, 0x0020, "xs", "?" }, |
| 1714 | { 0x0041, 0x0021, "UI", "Referenced SOP Class UID" }, |
| 1715 | { 0x0041, 0x0022, "UI", "Referenced SOP Instance UID" }, |
| 1716 | { 0x0041, 0x0030, "xs", "?" }, |
| 1717 | { 0x0041, 0x0031, "xs", "?" }, |
| 1718 | { 0x0041, 0x0032, "xs", "?" }, |
| 1719 | { 0x0041, 0x0034, "DA", "Modified Date" }, |
| 1720 | { 0x0041, 0x0036, "TM", "Modified Time" }, |
| 1721 | { 0x0041, 0x0040, "LT", "Owner Name" }, |
| 1722 | { 0x0041, 0x0041, "UI", "Referenced Image SOP Class UID" }, |
| 1723 | { 0x0041, 0x0042, "UI", "Referenced Image SOP Instance UID" }, |
| 1724 | { 0x0041, 0x0050, "xs", "?" }, |
| 1725 | { 0x0041, 0x0060, "UL", "Number of Images" }, |
| 1726 | { 0x0041, 0x0062, "UL", "Number of Other" }, |
| 1727 | { 0x0041, 0x00a0, "LT", "External Folder Element DSID" }, |
| 1728 | { 0x0041, 0x00a1, "US", "External Folder Element Data Set Type" }, |
| 1729 | { 0x0041, 0x00a2, "LT", "External Folder Element File Location" }, |
| 1730 | { 0x0041, 0x00a3, "UL", "External Folder Element Length" }, |
| 1731 | { 0x0041, 0x00b0, "LT", "Internal Folder Element DSID" }, |
| 1732 | { 0x0041, 0x00b1, "US", "Internal Folder Element Data Set Type" }, |
| 1733 | { 0x0041, 0x00b2, "UL", "Internal Offset To Data Set" }, |
| 1734 | { 0x0041, 0x00b3, "UL", "Internal Offset To Image" }, |
| 1735 | { 0x0043, 0x0001, "SS", "Bitmap Of Prescan Options" }, |
| 1736 | { 0x0043, 0x0002, "SS", "Gradient Offset In X" }, |
| 1737 | { 0x0043, 0x0003, "SS", "Gradient Offset In Y" }, |
| 1738 | { 0x0043, 0x0004, "SS", "Gradient Offset In Z" }, |
| 1739 | { 0x0043, 0x0005, "SS", "Image Is Original Or Unoriginal" }, |
| 1740 | { 0x0043, 0x0006, "SS", "Number Of EPI Shots" }, |
| 1741 | { 0x0043, 0x0007, "SS", "Views Per Segment" }, |
| 1742 | { 0x0043, 0x0008, "SS", "Respiratory Rate In BPM" }, |
| 1743 | { 0x0043, 0x0009, "SS", "Respiratory Trigger Point" }, |
| 1744 | { 0x0043, 0x000a, "SS", "Type Of Receiver Used" }, |
| 1745 | { 0x0043, 0x000b, "DS", "Peak Rate Of Change Of Gradient Field" }, |
| 1746 | { 0x0043, 0x000c, "DS", "Limits In Units Of Percent" }, |
| 1747 | { 0x0043, 0x000d, "DS", "PSD Estimated Limit" }, |
| 1748 | { 0x0043, 0x000e, "DS", "PSD Estimated Limit In Tesla Per Second" }, |
| 1749 | { 0x0043, 0x000f, "DS", "SAR Avg Head" }, |
| 1750 | { 0x0043, 0x0010, "US", "Window Value" }, |
| 1751 | { 0x0043, 0x0011, "US", "Total Input Views" }, |
| 1752 | { 0x0043, 0x0012, "SS", "Xray Chain" }, |
| 1753 | { 0x0043, 0x0013, "SS", "Recon Kernel Parameters" }, |
| 1754 | { 0x0043, 0x0014, "SS", "Calibration Parameters" }, |
| 1755 | { 0x0043, 0x0015, "SS", "Total Output Views" }, |
| 1756 | { 0x0043, 0x0016, "SS", "Number Of Overranges" }, |
| 1757 | { 0x0043, 0x0017, "DS", "IBH Image Scale Factors" }, |
| 1758 | { 0x0043, 0x0018, "DS", "BBH Coefficients" }, |
| 1759 | { 0x0043, 0x0019, "SS", "Number Of BBH Chains To Blend" }, |
| 1760 | { 0x0043, 0x001a, "SL", "Starting Channel Number" }, |
| 1761 | { 0x0043, 0x001b, "SS", "PPScan Parameters" }, |
| 1762 | { 0x0043, 0x001c, "SS", "GE Image Integrity" }, |
| 1763 | { 0x0043, 0x001d, "SS", "Level Value" }, |
| 1764 | { 0x0043, 0x001e, "xs", "?" }, |
| 1765 | { 0x0043, 0x001f, "SL", "Max Overranges In A View" }, |
| 1766 | { 0x0043, 0x0020, "DS", "Avg Overranges All Views" }, |
| 1767 | { 0x0043, 0x0021, "SS", "Corrected Afterglow Terms" }, |
| 1768 | { 0x0043, 0x0025, "SS", "Reference Channels" }, |
| 1769 | { 0x0043, 0x0026, "US", "No Views Ref Channels Blocked" }, |
| 1770 | { 0x0043, 0x0027, "xs", "?" }, |
| 1771 | { 0x0043, 0x0028, "OB", "Unique Image Identifier" }, |
| 1772 | { 0x0043, 0x0029, "OB", "Histogram Tables" }, |
| 1773 | { 0x0043, 0x002a, "OB", "User Defined Data" }, |
| 1774 | { 0x0043, 0x002b, "SS", "Private Scan Options" }, |
| 1775 | { 0x0043, 0x002c, "SS", "Effective Echo Spacing" }, |
| 1776 | { 0x0043, 0x002d, "SH", "String Slop Field 1" }, |
| 1777 | { 0x0043, 0x002e, "SH", "String Slop Field 2" }, |
| 1778 | { 0x0043, 0x002f, "SS", "Raw Data Type" }, |
| 1779 | { 0x0043, 0x0030, "SS", "Raw Data Type" }, |
| 1780 | { 0x0043, 0x0031, "DS", "RA Coord Of Target Recon Centre" }, |
| 1781 | { 0x0043, 0x0032, "SS", "Raw Data Type" }, |
| 1782 | { 0x0043, 0x0033, "FL", "Neg Scan Spacing" }, |
| 1783 | { 0x0043, 0x0034, "IS", "Offset Frequency" }, |
| 1784 | { 0x0043, 0x0035, "UL", "User Usage Tag" }, |
| 1785 | { 0x0043, 0x0036, "UL", "User Fill Map MSW" }, |
| 1786 | { 0x0043, 0x0037, "UL", "User Fill Map LSW" }, |
| 1787 | { 0x0043, 0x0038, "FL", "User 25 To User 48" }, |
| 1788 | { 0x0043, 0x0039, "IS", "Slop Integer 6 To Slop Integer 9" }, |
| 1789 | { 0x0043, 0x0040, "FL", "Trigger On Position" }, |
| 1790 | { 0x0043, 0x0041, "FL", "Degree Of Rotation" }, |
| 1791 | { 0x0043, 0x0042, "SL", "DAS Trigger Source" }, |
| 1792 | { 0x0043, 0x0043, "SL", "DAS Fpa Gain" }, |
| 1793 | { 0x0043, 0x0044, "SL", "DAS Output Source" }, |
| 1794 | { 0x0043, 0x0045, "SL", "DAS Ad Input" }, |
| 1795 | { 0x0043, 0x0046, "SL", "DAS Cal Mode" }, |
| 1796 | { 0x0043, 0x0047, "SL", "DAS Cal Frequency" }, |
| 1797 | { 0x0043, 0x0048, "SL", "DAS Reg Xm" }, |
| 1798 | { 0x0043, 0x0049, "SL", "DAS Auto Zero" }, |
| 1799 | { 0x0043, 0x004a, "SS", "Starting Channel Of View" }, |
| 1800 | { 0x0043, 0x004b, "SL", "DAS Xm Pattern" }, |
| 1801 | { 0x0043, 0x004c, "SS", "TGGC Trigger Mode" }, |
| 1802 | { 0x0043, 0x004d, "FL", "Start Scan To Xray On Delay" }, |
| 1803 | { 0x0043, 0x004e, "FL", "Duration Of Xray On" }, |
| 1804 | { 0x0044, 0x0000, "UI", "?" }, |
| 1805 | { 0x0045, 0x0004, "CS", "AES" }, |
| 1806 | { 0x0045, 0x0006, "DS", "Angulation" }, |
| 1807 | { 0x0045, 0x0009, "DS", "Real Magnification Factor" }, |
| 1808 | { 0x0045, 0x000b, "CS", "Senograph Type" }, |
| 1809 | { 0x0045, 0x000c, "DS", "Integration Time" }, |
| 1810 | { 0x0045, 0x000d, "DS", "ROI Origin X and Y" }, |
| 1811 | { 0x0045, 0x0011, "DS", "Receptor Size cm X and Y" }, |
| 1812 | { 0x0045, 0x0012, "IS", "Receptor Size Pixels X and Y" }, |
| 1813 | { 0x0045, 0x0013, "ST", "Screen" }, |
| 1814 | { 0x0045, 0x0014, "DS", "Pixel Pitch Microns" }, |
| 1815 | { 0x0045, 0x0015, "IS", "Pixel Depth Bits" }, |
| 1816 | { 0x0045, 0x0016, "IS", "Binning Factor X and Y" }, |
| 1817 | { 0x0045, 0x001b, "CS", "Clinical View" }, |
| 1818 | { 0x0045, 0x001d, "DS", "Mean Of Raw Gray Levels" }, |
| 1819 | { 0x0045, 0x001e, "DS", "Mean Of Offset Gray Levels" }, |
| 1820 | { 0x0045, 0x001f, "DS", "Mean Of Corrected Gray Levels" }, |
| 1821 | { 0x0045, 0x0020, "DS", "Mean Of Region Gray Levels" }, |
| 1822 | { 0x0045, 0x0021, "DS", "Mean Of Log Region Gray Levels" }, |
| 1823 | { 0x0045, 0x0022, "DS", "Standard Deviation Of Raw Gray Levels" }, |
| 1824 | { 0x0045, 0x0023, "DS", "Standard Deviation Of Corrected Gray Levels" }, |
| 1825 | { 0x0045, 0x0024, "DS", "Standard Deviation Of Region Gray Levels" }, |
| 1826 | { 0x0045, 0x0025, "DS", "Standard Deviation Of Log Region Gray Levels" }, |
| 1827 | { 0x0045, 0x0026, "OB", "MAO Buffer" }, |
| 1828 | { 0x0045, 0x0027, "IS", "Set Number" }, |
| 1829 | { 0x0045, 0x0028, "CS", "WindowingType (LINEAR or GAMMA)" }, |
| 1830 | { 0x0045, 0x0029, "DS", "WindowingParameters" }, |
| 1831 | { 0x0045, 0x002a, "IS", "Crosshair Cursor X Coordinates" }, |
| 1832 | { 0x0045, 0x002b, "IS", "Crosshair Cursor Y Coordinates" }, |
| 1833 | { 0x0045, 0x0039, "US", "Vignette Rows" }, |
| 1834 | { 0x0045, 0x003a, "US", "Vignette Columns" }, |
| 1835 | { 0x0045, 0x003b, "US", "Vignette Bits Allocated" }, |
| 1836 | { 0x0045, 0x003c, "US", "Vignette Bits Stored" }, |
| 1837 | { 0x0045, 0x003d, "US", "Vignette High Bit" }, |
| 1838 | { 0x0045, 0x003e, "US", "Vignette Pixel Representation" }, |
| 1839 | { 0x0045, 0x003f, "OB", "Vignette Pixel Data" }, |
| 1840 | { 0x0047, 0x0001, "SQ", "Reconstruction Parameters Sequence" }, |
| 1841 | { 0x0047, 0x0050, "UL", "Volume Voxel Count" }, |
| 1842 | { 0x0047, 0x0051, "UL", "Volume Segment Count" }, |
| 1843 | { 0x0047, 0x0053, "US", "Volume Slice Size" }, |
| 1844 | { 0x0047, 0x0054, "US", "Volume Slice Count" }, |
| 1845 | { 0x0047, 0x0055, "SL", "Volume Threshold Value" }, |
| 1846 | { 0x0047, 0x0057, "DS", "Volume Voxel Ratio" }, |
| 1847 | { 0x0047, 0x0058, "DS", "Volume Voxel Size" }, |
| 1848 | { 0x0047, 0x0059, "US", "Volume Z Position Size" }, |
| 1849 | { 0x0047, 0x0060, "DS", "Volume Base Line" }, |
| 1850 | { 0x0047, 0x0061, "DS", "Volume Center Point" }, |
| 1851 | { 0x0047, 0x0063, "SL", "Volume Skew Base" }, |
| 1852 | { 0x0047, 0x0064, "DS", "Volume Registration Transform Rotation Matrix" }, |
| 1853 | { 0x0047, 0x0065, "DS", "Volume Registration Transform Translation Vector" }, |
| 1854 | { 0x0047, 0x0070, "DS", "KVP List" }, |
| 1855 | { 0x0047, 0x0071, "IS", "XRay Tube Current List" }, |
| 1856 | { 0x0047, 0x0072, "IS", "Exposure List" }, |
| 1857 | { 0x0047, 0x0080, "LO", "Acquisition DLX Identifier" }, |
| 1858 | { 0x0047, 0x0085, "SQ", "Acquisition DLX 2D Series Sequence" }, |
| 1859 | { 0x0047, 0x0089, "DS", "Contrast Agent Volume List" }, |
| 1860 | { 0x0047, 0x008a, "US", "Number Of Injections" }, |
| 1861 | { 0x0047, 0x008b, "US", "Frame Count" }, |
| 1862 | { 0x0047, 0x0096, "IS", "Used Frames" }, |
| 1863 | { 0x0047, 0x0091, "LO", "XA 3D Reconstruction Algorithm Name" }, |
| 1864 | { 0x0047, 0x0092, "CS", "XA 3D Reconstruction Algorithm Version" }, |
| 1865 | { 0x0047, 0x0093, "DA", "DLX Calibration Date" }, |
| 1866 | { 0x0047, 0x0094, "TM", "DLX Calibration Time" }, |
| 1867 | { 0x0047, 0x0095, "CS", "DLX Calibration Status" }, |
| 1868 | { 0x0047, 0x0098, "US", "Transform Count" }, |
| 1869 | { 0x0047, 0x0099, "SQ", "Transform Sequence" }, |
| 1870 | { 0x0047, 0x009a, "DS", "Transform Rotation Matrix" }, |
| 1871 | { 0x0047, 0x009b, "DS", "Transform Translation Vector" }, |
| 1872 | { 0x0047, 0x009c, "LO", "Transform Label" }, |
| 1873 | { 0x0047, 0x00b1, "US", "Wireframe Count" }, |
| 1874 | { 0x0047, 0x00b2, "US", "Location System" }, |
| 1875 | { 0x0047, 0x00b0, "SQ", "Wireframe List" }, |
| 1876 | { 0x0047, 0x00b5, "LO", "Wireframe Name" }, |
| 1877 | { 0x0047, 0x00b6, "LO", "Wireframe Group Name" }, |
| 1878 | { 0x0047, 0x00b7, "LO", "Wireframe Color" }, |
| 1879 | { 0x0047, 0x00b8, "SL", "Wireframe Attributes" }, |
| 1880 | { 0x0047, 0x00b9, "SL", "Wireframe Point Count" }, |
| 1881 | { 0x0047, 0x00ba, "SL", "Wireframe Timestamp" }, |
| 1882 | { 0x0047, 0x00bb, "SQ", "Wireframe Point List" }, |
| 1883 | { 0x0047, 0x00bc, "DS", "Wireframe Points Coordinates" }, |
| 1884 | { 0x0047, 0x00c0, "DS", "Volume Upper Left High Corner RAS" }, |
| 1885 | { 0x0047, 0x00c1, "DS", "Volume Slice To RAS Rotation Matrix" }, |
| 1886 | { 0x0047, 0x00c2, "DS", "Volume Upper Left High Corner TLOC" }, |
| 1887 | { 0x0047, 0x00d1, "OB", "Volume Segment List" }, |
| 1888 | { 0x0047, 0x00d2, "OB", "Volume Gradient List" }, |
| 1889 | { 0x0047, 0x00d3, "OB", "Volume Density List" }, |
| 1890 | { 0x0047, 0x00d4, "OB", "Volume Z Position List" }, |
| 1891 | { 0x0047, 0x00d5, "OB", "Volume Original Index List" }, |
| 1892 | { 0x0050, 0x0000, "UL", "Calibration Group Length" }, |
| 1893 | { 0x0050, 0x0004, "CS", "Calibration Object" }, |
| 1894 | { 0x0050, 0x0010, "SQ", "DeviceSequence" }, |
| 1895 | { 0x0050, 0x0014, "DS", "DeviceLength" }, |
| 1896 | { 0x0050, 0x0016, "DS", "DeviceDiameter" }, |
| 1897 | { 0x0050, 0x0017, "CS", "DeviceDiameterUnits" }, |
| 1898 | { 0x0050, 0x0018, "DS", "DeviceVolume" }, |
| 1899 | { 0x0050, 0x0019, "DS", "InterMarkerDistance" }, |
| 1900 | { 0x0050, 0x0020, "LO", "DeviceDescription" }, |
| 1901 | { 0x0050, 0x0030, "SQ", "CodedInterventionDeviceSequence" }, |
| 1902 | { 0x0051, 0x0010, "xs", "Image Text" }, |
| 1903 | { 0x0054, 0x0000, "UL", "Nuclear Acquisition Group Length" }, |
| 1904 | { 0x0054, 0x0010, "US", "Energy Window Vector" }, |
| 1905 | { 0x0054, 0x0011, "US", "Number of Energy Windows" }, |
| 1906 | { 0x0054, 0x0012, "SQ", "Energy Window Information Sequence" }, |
| 1907 | { 0x0054, 0x0013, "SQ", "Energy Window Range Sequence" }, |
| 1908 | { 0x0054, 0x0014, "DS", "Energy Window Lower Limit" }, |
| 1909 | { 0x0054, 0x0015, "DS", "Energy Window Upper Limit" }, |
| 1910 | { 0x0054, 0x0016, "SQ", "Radiopharmaceutical Information Sequence" }, |
| 1911 | { 0x0054, 0x0017, "IS", "Residual Syringe Counts" }, |
| 1912 | { 0x0054, 0x0018, "SH", "Energy Window Name" }, |
| 1913 | { 0x0054, 0x0020, "US", "Detector Vector" }, |
| 1914 | { 0x0054, 0x0021, "US", "Number of Detectors" }, |
| 1915 | { 0x0054, 0x0022, "SQ", "Detector Information Sequence" }, |
| 1916 | { 0x0054, 0x0030, "US", "Phase Vector" }, |
| 1917 | { 0x0054, 0x0031, "US", "Number of Phases" }, |
| 1918 | { 0x0054, 0x0032, "SQ", "Phase Information Sequence" }, |
| 1919 | { 0x0054, 0x0033, "US", "Number of Frames In Phase" }, |
| 1920 | { 0x0054, 0x0036, "IS", "Phase Delay" }, |
| 1921 | { 0x0054, 0x0038, "IS", "Pause Between Frames" }, |
| 1922 | { 0x0054, 0x0050, "US", "Rotation Vector" }, |
| 1923 | { 0x0054, 0x0051, "US", "Number of Rotations" }, |
| 1924 | { 0x0054, 0x0052, "SQ", "Rotation Information Sequence" }, |
| 1925 | { 0x0054, 0x0053, "US", "Number of Frames In Rotation" }, |
| 1926 | { 0x0054, 0x0060, "US", "R-R Interval Vector" }, |
| 1927 | { 0x0054, 0x0061, "US", "Number of R-R Intervals" }, |
| 1928 | { 0x0054, 0x0062, "SQ", "Gated Information Sequence" }, |
| 1929 | { 0x0054, 0x0063, "SQ", "Data Information Sequence" }, |
| 1930 | { 0x0054, 0x0070, "US", "Time Slot Vector" }, |
| 1931 | { 0x0054, 0x0071, "US", "Number of Time Slots" }, |
| 1932 | { 0x0054, 0x0072, "SQ", "Time Slot Information Sequence" }, |
| 1933 | { 0x0054, 0x0073, "DS", "Time Slot Time" }, |
| 1934 | { 0x0054, 0x0080, "US", "Slice Vector" }, |
| 1935 | { 0x0054, 0x0081, "US", "Number of Slices" }, |
| 1936 | { 0x0054, 0x0090, "US", "Angular View Vector" }, |
| 1937 | { 0x0054, 0x0100, "US", "Time Slice Vector" }, |
| 1938 | { 0x0054, 0x0101, "US", "Number Of Time Slices" }, |
| 1939 | { 0x0054, 0x0200, "DS", "Start Angle" }, |
| 1940 | { 0x0054, 0x0202, "CS", "Type of Detector Motion" }, |
| 1941 | { 0x0054, 0x0210, "IS", "Trigger Vector" }, |
| 1942 | { 0x0054, 0x0211, "US", "Number of Triggers in Phase" }, |
| 1943 | { 0x0054, 0x0220, "SQ", "View Code Sequence" }, |
| 1944 | { 0x0054, 0x0222, "SQ", "View Modifier Code Sequence" }, |
| 1945 | { 0x0054, 0x0300, "SQ", "Radionuclide Code Sequence" }, |
| 1946 | { 0x0054, 0x0302, "SQ", "Radiopharmaceutical Route Code Sequence" }, |
| 1947 | { 0x0054, 0x0304, "SQ", "Radiopharmaceutical Code Sequence" }, |
| 1948 | { 0x0054, 0x0306, "SQ", "Calibration Data Sequence" }, |
| 1949 | { 0x0054, 0x0308, "US", "Energy Window Number" }, |
| 1950 | { 0x0054, 0x0400, "SH", "Image ID" }, |
| 1951 | { 0x0054, 0x0410, "SQ", "Patient Orientation Code Sequence" }, |
| 1952 | { 0x0054, 0x0412, "SQ", "Patient Orientation Modifier Code Sequence" }, |
| 1953 | { 0x0054, 0x0414, "SQ", "Patient Gantry Relationship Code Sequence" }, |
| 1954 | { 0x0054, 0x1000, "CS", "Positron Emission Tomography Series Type" }, |
| 1955 | { 0x0054, 0x1001, "CS", "Positron Emission Tomography Units" }, |
| 1956 | { 0x0054, 0x1002, "CS", "Counts Source" }, |
| 1957 | { 0x0054, 0x1004, "CS", "Reprojection Method" }, |
| 1958 | { 0x0054, 0x1100, "CS", "Randoms Correction Method" }, |
| 1959 | { 0x0054, 0x1101, "LO", "Attenuation Correction Method" }, |
| 1960 | { 0x0054, 0x1102, "CS", "Decay Correction" }, |
| 1961 | { 0x0054, 0x1103, "LO", "Reconstruction Method" }, |
| 1962 | { 0x0054, 0x1104, "LO", "Detector Lines of Response Used" }, |
| 1963 | { 0x0054, 0x1105, "LO", "Scatter Correction Method" }, |
| 1964 | { 0x0054, 0x1200, "DS", "Axial Acceptance" }, |
| 1965 | { 0x0054, 0x1201, "IS", "Axial Mash" }, |
| 1966 | { 0x0054, 0x1202, "IS", "Transverse Mash" }, |
| 1967 | { 0x0054, 0x1203, "DS", "Detector Element Size" }, |
| 1968 | { 0x0054, 0x1210, "DS", "Coincidence Window Width" }, |
| 1969 | { 0x0054, 0x1220, "CS", "Secondary Counts Type" }, |
| 1970 | { 0x0054, 0x1300, "DS", "Frame Reference Time" }, |
| 1971 | { 0x0054, 0x1310, "IS", "Primary Prompts Counts Accumulated" }, |
| 1972 | { 0x0054, 0x1311, "IS", "Secondary Counts Accumulated" }, |
| 1973 | { 0x0054, 0x1320, "DS", "Slice Sensitivity Factor" }, |
| 1974 | { 0x0054, 0x1321, "DS", "Decay Factor" }, |
| 1975 | { 0x0054, 0x1322, "DS", "Dose Calibration Factor" }, |
| 1976 | { 0x0054, 0x1323, "DS", "Scatter Fraction Factor" }, |
| 1977 | { 0x0054, 0x1324, "DS", "Dead Time Factor" }, |
| 1978 | { 0x0054, 0x1330, "US", "Image Index" }, |
| 1979 | { 0x0054, 0x1400, "CS", "Counts Included" }, |
| 1980 | { 0x0054, 0x1401, "CS", "Dead Time Correction Flag" }, |
| 1981 | { 0x0055, 0x0046, "LT", "Current Ward" }, |
| 1982 | { 0x0058, 0x0000, "SQ", "?" }, |
| 1983 | { 0x0060, 0x3000, "SQ", "Histogram Sequence" }, |
| 1984 | { 0x0060, 0x3002, "US", "Histogram Number of Bins" }, |
| 1985 | { 0x0060, 0x3004, "xs", "Histogram First Bin Value" }, |
| 1986 | { 0x0060, 0x3006, "xs", "Histogram Last Bin Value" }, |
| 1987 | { 0x0060, 0x3008, "US", "Histogram Bin Width" }, |
| 1988 | { 0x0060, 0x3010, "LO", "Histogram Explanation" }, |
| 1989 | { 0x0060, 0x3020, "UL", "Histogram Data" }, |
| 1990 | { 0x0070, 0x0001, "SQ", "Graphic Annotation Sequence" }, |
| 1991 | { 0x0070, 0x0002, "CS", "Graphic Layer" }, |
| 1992 | { 0x0070, 0x0003, "CS", "Bounding Box Annotation Units" }, |
| 1993 | { 0x0070, 0x0004, "CS", "Anchor Point Annotation Units" }, |
| 1994 | { 0x0070, 0x0005, "CS", "Graphic Annotation Units" }, |
| 1995 | { 0x0070, 0x0006, "ST", "Unformatted Text Value" }, |
| 1996 | { 0x0070, 0x0008, "SQ", "Text Object Sequence" }, |
| 1997 | { 0x0070, 0x0009, "SQ", "Graphic Object Sequence" }, |
| 1998 | { 0x0070, 0x0010, "FL", "Bounding Box TLHC" }, |
| 1999 | { 0x0070, 0x0011, "FL", "Bounding Box BRHC" }, |
| 2000 | { 0x0070, 0x0014, "FL", "Anchor Point" }, |
| 2001 | { 0x0070, 0x0015, "CS", "Anchor Point Visibility" }, |
| 2002 | { 0x0070, 0x0020, "US", "Graphic Dimensions" }, |
| 2003 | { 0x0070, 0x0021, "US", "Number Of Graphic Points" }, |
| 2004 | { 0x0070, 0x0022, "FL", "Graphic Data" }, |
| 2005 | { 0x0070, 0x0023, "CS", "Graphic Type" }, |
| 2006 | { 0x0070, 0x0024, "CS", "Graphic Filled" }, |
| 2007 | { 0x0070, 0x0040, "IS", "Image Rotation" }, |
| 2008 | { 0x0070, 0x0041, "CS", "Image Horizontal Flip" }, |
| 2009 | { 0x0070, 0x0050, "US", "Displayed Area TLHC" }, |
| 2010 | { 0x0070, 0x0051, "US", "Displayed Area BRHC" }, |
| 2011 | { 0x0070, 0x0060, "SQ", "Graphic Layer Sequence" }, |
| 2012 | { 0x0070, 0x0062, "IS", "Graphic Layer Order" }, |
| 2013 | { 0x0070, 0x0066, "US", "Graphic Layer Recommended Display Value" }, |
| 2014 | { 0x0070, 0x0068, "LO", "Graphic Layer Description" }, |
| 2015 | { 0x0070, 0x0080, "CS", "Presentation Label" }, |
| 2016 | { 0x0070, 0x0081, "LO", "Presentation Description" }, |
| 2017 | { 0x0070, 0x0082, "DA", "Presentation Creation Date" }, |
| 2018 | { 0x0070, 0x0083, "TM", "Presentation Creation Time" }, |
| 2019 | { 0x0070, 0x0084, "PN", "Presentation Creator's Name" }, |
| 2020 | { 0x0087, 0x0010, "CS", "Media Type" }, |
| 2021 | { 0x0087, 0x0020, "CS", "Media Location" }, |
| 2022 | { 0x0087, 0x0050, "IS", "Estimated Retrieve Time" }, |
| 2023 | { 0x0088, 0x0000, "UL", "Storage Group Length" }, |
| 2024 | { 0x0088, 0x0130, "SH", "Storage Media FileSet ID" }, |
| 2025 | { 0x0088, 0x0140, "UI", "Storage Media FileSet UID" }, |
| 2026 | { 0x0088, 0x0200, "SQ", "Icon Image Sequence" }, |
| 2027 | { 0x0088, 0x0904, "LO", "Topic Title" }, |
| 2028 | { 0x0088, 0x0906, "ST", "Topic Subject" }, |
| 2029 | { 0x0088, 0x0910, "LO", "Topic Author" }, |
| 2030 | { 0x0088, 0x0912, "LO", "Topic Key Words" }, |
| 2031 | { 0x0095, 0x0001, "LT", "Examination Folder ID" }, |
| 2032 | { 0x0095, 0x0004, "UL", "Folder Reported Status" }, |
| 2033 | { 0x0095, 0x0005, "LT", "Folder Reporting Radiologist" }, |
| 2034 | { 0x0095, 0x0007, "LT", "SIENET ISA PLA" }, |
| 2035 | { 0x0099, 0x0002, "UL", "Data Object Attributes" }, |
| 2036 | { 0x00e1, 0x0001, "US", "Data Dictionary Version" }, |
| 2037 | { 0x00e1, 0x0014, "LT", "?" }, |
| 2038 | { 0x00e1, 0x0022, "DS", "?" }, |
| 2039 | { 0x00e1, 0x0023, "DS", "?" }, |
| 2040 | { 0x00e1, 0x0024, "LT", "?" }, |
| 2041 | { 0x00e1, 0x0025, "LT", "?" }, |
| 2042 | { 0x00e1, 0x0040, "SH", "Offset From CT MR Images" }, |
| 2043 | { 0x0193, 0x0002, "DS", "RIS Key" }, |
| 2044 | { 0x0307, 0x0001, "UN", "RIS Worklist IMGEF" }, |
| 2045 | { 0x0309, 0x0001, "UN", "RIS Report IMGEF" }, |
| 2046 | { 0x0601, 0x0000, "SH", "Implementation Version" }, |
| 2047 | { 0x0601, 0x0020, "DS", "Relative Table Position" }, |
| 2048 | { 0x0601, 0x0021, "DS", "Relative Table Height" }, |
| 2049 | { 0x0601, 0x0030, "SH", "Surview Direction" }, |
| 2050 | { 0x0601, 0x0031, "DS", "Surview Length" }, |
| 2051 | { 0x0601, 0x0050, "SH", "Image View Type" }, |
| 2052 | { 0x0601, 0x0070, "DS", "Batch Number" }, |
| 2053 | { 0x0601, 0x0071, "DS", "Batch Size" }, |
| 2054 | { 0x0601, 0x0072, "DS", "Batch Slice Number" }, |
| 2055 | { 0x1000, 0x0000, "xs", "?" }, |
| 2056 | { 0x1000, 0x0001, "US", "Run Length Triplet" }, |
| 2057 | { 0x1000, 0x0002, "US", "Huffman Table Size" }, |
| 2058 | { 0x1000, 0x0003, "US", "Huffman Table Triplet" }, |
| 2059 | { 0x1000, 0x0004, "US", "Shift Table Size" }, |
| 2060 | { 0x1000, 0x0005, "US", "Shift Table Triplet" }, |
| 2061 | { 0x1010, 0x0000, "xs", "?" }, |
| 2062 | { 0x1369, 0x0000, "US", "?" }, |
| 2063 | { 0x2000, 0x0000, "UL", "Film Session Group Length" }, |
| 2064 | { 0x2000, 0x0010, "IS", "Number of Copies" }, |
| 2065 | { 0x2000, 0x0020, "CS", "Print Priority" }, |
| 2066 | { 0x2000, 0x0030, "CS", "Medium Type" }, |
| 2067 | { 0x2000, 0x0040, "CS", "Film Destination" }, |
| 2068 | { 0x2000, 0x0050, "LO", "Film Session Label" }, |
| 2069 | { 0x2000, 0x0060, "IS", "Memory Allocation" }, |
| 2070 | { 0x2000, 0x0500, "SQ", "Referenced Film Box Sequence" }, |
| 2071 | { 0x2010, 0x0000, "UL", "Film Box Group Length" }, |
| 2072 | { 0x2010, 0x0010, "ST", "Image Display Format" }, |
| 2073 | { 0x2010, 0x0030, "CS", "Annotation Display Format ID" }, |
| 2074 | { 0x2010, 0x0040, "CS", "Film Orientation" }, |
| 2075 | { 0x2010, 0x0050, "CS", "Film Size ID" }, |
| 2076 | { 0x2010, 0x0060, "CS", "Magnification Type" }, |
| 2077 | { 0x2010, 0x0080, "CS", "Smoothing Type" }, |
| 2078 | { 0x2010, 0x0100, "CS", "Border Density" }, |
| 2079 | { 0x2010, 0x0110, "CS", "Empty Image Density" }, |
| 2080 | { 0x2010, 0x0120, "US", "Min Density" }, |
| 2081 | { 0x2010, 0x0130, "US", "Max Density" }, |
| 2082 | { 0x2010, 0x0140, "CS", "Trim" }, |
| 2083 | { 0x2010, 0x0150, "ST", "Configuration Information" }, |
| 2084 | { 0x2010, 0x0500, "SQ", "Referenced Film Session Sequence" }, |
| 2085 | { 0x2010, 0x0510, "SQ", "Referenced Image Box Sequence" }, |
| 2086 | { 0x2010, 0x0520, "SQ", "Referenced Basic Annotation Box Sequence" }, |
| 2087 | { 0x2020, 0x0000, "UL", "Image Box Group Length" }, |
| 2088 | { 0x2020, 0x0010, "US", "Image Box Position" }, |
| 2089 | { 0x2020, 0x0020, "CS", "Polarity" }, |
| 2090 | { 0x2020, 0x0030, "DS", "Requested Image Size" }, |
| 2091 | { 0x2020, 0x0110, "SQ", "Preformatted Grayscale Image Sequence" }, |
| 2092 | { 0x2020, 0x0111, "SQ", "Preformatted Color Image Sequence" }, |
| 2093 | { 0x2020, 0x0130, "SQ", "Referenced Image Overlay Box Sequence" }, |
| 2094 | { 0x2020, 0x0140, "SQ", "Referenced VOI LUT Box Sequence" }, |
| 2095 | { 0x2030, 0x0000, "UL", "Annotation Group Length" }, |
| 2096 | { 0x2030, 0x0010, "US", "Annotation Position" }, |
| 2097 | { 0x2030, 0x0020, "LO", "Text String" }, |
| 2098 | { 0x2040, 0x0000, "UL", "Overlay Box Group Length" }, |
| 2099 | { 0x2040, 0x0010, "SQ", "Referenced Overlay Plane Sequence" }, |
| 2100 | { 0x2040, 0x0011, "US", "Referenced Overlay Plane Groups" }, |
| 2101 | { 0x2040, 0x0060, "CS", "Overlay Magnification Type" }, |
| 2102 | { 0x2040, 0x0070, "CS", "Overlay Smoothing Type" }, |
| 2103 | { 0x2040, 0x0080, "CS", "Overlay Foreground Density" }, |
| 2104 | { 0x2040, 0x0090, "CS", "Overlay Mode" }, |
| 2105 | { 0x2040, 0x0100, "CS", "Threshold Density" }, |
| 2106 | { 0x2040, 0x0500, "SQ", "Referenced Overlay Image Box Sequence" }, |
| 2107 | { 0x2050, 0x0010, "SQ", "Presentation LUT Sequence" }, |
| 2108 | { 0x2050, 0x0020, "CS", "Presentation LUT Shape" }, |
| 2109 | { 0x2100, 0x0000, "UL", "Print Job Group Length" }, |
| 2110 | { 0x2100, 0x0020, "CS", "Execution Status" }, |
| 2111 | { 0x2100, 0x0030, "CS", "Execution Status Info" }, |
| 2112 | { 0x2100, 0x0040, "DA", "Creation Date" }, |
| 2113 | { 0x2100, 0x0050, "TM", "Creation Time" }, |
| 2114 | { 0x2100, 0x0070, "AE", "Originator" }, |
| 2115 | { 0x2100, 0x0500, "SQ", "Referenced Print Job Sequence" }, |
| 2116 | { 0x2110, 0x0000, "UL", "Printer Group Length" }, |
| 2117 | { 0x2110, 0x0010, "CS", "Printer Status" }, |
| 2118 | { 0x2110, 0x0020, "CS", "Printer Status Info" }, |
| 2119 | { 0x2110, 0x0030, "LO", "Printer Name" }, |
| 2120 | { 0x2110, 0x0099, "SH", "Print Queue ID" }, |
| 2121 | { 0x3002, 0x0002, "SH", "RT Image Label" }, |
| 2122 | { 0x3002, 0x0003, "LO", "RT Image Name" }, |
| 2123 | { 0x3002, 0x0004, "ST", "RT Image Description" }, |
| 2124 | { 0x3002, 0x000a, "CS", "Reported Values Origin" }, |
| 2125 | { 0x3002, 0x000c, "CS", "RT Image Plane" }, |
| 2126 | { 0x3002, 0x000e, "DS", "X-Ray Image Receptor Angle" }, |
| 2127 | { 0x3002, 0x0010, "DS", "RTImageOrientation" }, |
| 2128 | { 0x3002, 0x0011, "DS", "Image Plane Pixel Spacing" }, |
| 2129 | { 0x3002, 0x0012, "DS", "RT Image Position" }, |
| 2130 | { 0x3002, 0x0020, "SH", "Radiation Machine Name" }, |
| 2131 | { 0x3002, 0x0022, "DS", "Radiation Machine SAD" }, |
| 2132 | { 0x3002, 0x0024, "DS", "Radiation Machine SSD" }, |
| 2133 | { 0x3002, 0x0026, "DS", "RT Image SID" }, |
| 2134 | { 0x3002, 0x0028, "DS", "Source to Reference Object Distance" }, |
| 2135 | { 0x3002, 0x0029, "IS", "Fraction Number" }, |
| 2136 | { 0x3002, 0x0030, "SQ", "Exposure Sequence" }, |
| 2137 | { 0x3002, 0x0032, "DS", "Meterset Exposure" }, |
| 2138 | { 0x3004, 0x0001, "CS", "DVH Type" }, |
| 2139 | { 0x3004, 0x0002, "CS", "Dose Units" }, |
| 2140 | { 0x3004, 0x0004, "CS", "Dose Type" }, |
| 2141 | { 0x3004, 0x0006, "LO", "Dose Comment" }, |
| 2142 | { 0x3004, 0x0008, "DS", "Normalization Point" }, |
| 2143 | { 0x3004, 0x000a, "CS", "Dose Summation Type" }, |
| 2144 | { 0x3004, 0x000c, "DS", "GridFrame Offset Vector" }, |
| 2145 | { 0x3004, 0x000e, "DS", "Dose Grid Scaling" }, |
| 2146 | { 0x3004, 0x0010, "SQ", "RT Dose ROI Sequence" }, |
| 2147 | { 0x3004, 0x0012, "DS", "Dose Value" }, |
| 2148 | { 0x3004, 0x0040, "DS", "DVH Normalization Point" }, |
| 2149 | { 0x3004, 0x0042, "DS", "DVH Normalization Dose Value" }, |
| 2150 | { 0x3004, 0x0050, "SQ", "DVH Sequence" }, |
| 2151 | { 0x3004, 0x0052, "DS", "DVH Dose Scaling" }, |
| 2152 | { 0x3004, 0x0054, "CS", "DVH Volume Units" }, |
| 2153 | { 0x3004, 0x0056, "IS", "DVH Number of Bins" }, |
| 2154 | { 0x3004, 0x0058, "DS", "DVH Data" }, |
| 2155 | { 0x3004, 0x0060, "SQ", "DVH Referenced ROI Sequence" }, |
| 2156 | { 0x3004, 0x0062, "CS", "DVH ROI Contribution Type" }, |
| 2157 | { 0x3004, 0x0070, "DS", "DVH Minimum Dose" }, |
| 2158 | { 0x3004, 0x0072, "DS", "DVH Maximum Dose" }, |
| 2159 | { 0x3004, 0x0074, "DS", "DVH Mean Dose" }, |
| 2160 | { 0x3006, 0x0002, "SH", "Structure Set Label" }, |
| 2161 | { 0x3006, 0x0004, "LO", "Structure Set Name" }, |
| 2162 | { 0x3006, 0x0006, "ST", "Structure Set Description" }, |
| 2163 | { 0x3006, 0x0008, "DA", "Structure Set Date" }, |
| 2164 | { 0x3006, 0x0009, "TM", "Structure Set Time" }, |
| 2165 | { 0x3006, 0x0010, "SQ", "Referenced Frame of Reference Sequence" }, |
| 2166 | { 0x3006, 0x0012, "SQ", "RT Referenced Study Sequence" }, |
| 2167 | { 0x3006, 0x0014, "SQ", "RT Referenced Series Sequence" }, |
| 2168 | { 0x3006, 0x0016, "SQ", "Contour Image Sequence" }, |
| 2169 | { 0x3006, 0x0020, "SQ", "Structure Set ROI Sequence" }, |
| 2170 | { 0x3006, 0x0022, "IS", "ROI Number" }, |
| 2171 | { 0x3006, 0x0024, "UI", "Referenced Frame of Reference UID" }, |
| 2172 | { 0x3006, 0x0026, "LO", "ROI Name" }, |
| 2173 | { 0x3006, 0x0028, "ST", "ROI Description" }, |
| 2174 | { 0x3006, 0x002a, "IS", "ROI Display Color" }, |
| 2175 | { 0x3006, 0x002c, "DS", "ROI Volume" }, |
| 2176 | { 0x3006, 0x0030, "SQ", "RT Related ROI Sequence" }, |
| 2177 | { 0x3006, 0x0033, "CS", "RT ROI Relationship" }, |
| 2178 | { 0x3006, 0x0036, "CS", "ROI Generation Algorithm" }, |
| 2179 | { 0x3006, 0x0038, "LO", "ROI Generation Description" }, |
| 2180 | { 0x3006, 0x0039, "SQ", "ROI Contour Sequence" }, |
| 2181 | { 0x3006, 0x0040, "SQ", "Contour Sequence" }, |
| 2182 | { 0x3006, 0x0042, "CS", "Contour Geometric Type" }, |
| 2183 | { 0x3006, 0x0044, "DS", "Contour SlabT hickness" }, |
| 2184 | { 0x3006, 0x0045, "DS", "Contour Offset Vector" }, |
| 2185 | { 0x3006, 0x0046, "IS", "Number of Contour Points" }, |
| 2186 | { 0x3006, 0x0050, "DS", "Contour Data" }, |
| 2187 | { 0x3006, 0x0080, "SQ", "RT ROI Observations Sequence" }, |
| 2188 | { 0x3006, 0x0082, "IS", "Observation Number" }, |
| 2189 | { 0x3006, 0x0084, "IS", "Referenced ROI Number" }, |
| 2190 | { 0x3006, 0x0085, "SH", "ROI Observation Label" }, |
| 2191 | { 0x3006, 0x0086, "SQ", "RT ROI Identification Code Sequence" }, |
| 2192 | { 0x3006, 0x0088, "ST", "ROI Observation Description" }, |
| 2193 | { 0x3006, 0x00a0, "SQ", "Related RT ROI Observations Sequence" }, |
| 2194 | { 0x3006, 0x00a4, "CS", "RT ROI Interpreted Type" }, |
| 2195 | { 0x3006, 0x00a6, "PN", "ROI Interpreter" }, |
| 2196 | { 0x3006, 0x00b0, "SQ", "ROI Physical Properties Sequence" }, |
| 2197 | { 0x3006, 0x00b2, "CS", "ROI Physical Property" }, |
| 2198 | { 0x3006, 0x00b4, "DS", "ROI Physical Property Value" }, |
| 2199 | { 0x3006, 0x00c0, "SQ", "Frame of Reference Relationship Sequence" }, |
| 2200 | { 0x3006, 0x00c2, "UI", "Related Frame of Reference UID" }, |
| 2201 | { 0x3006, 0x00c4, "CS", "Frame of Reference Transformation Type" }, |
| 2202 | { 0x3006, 0x00c6, "DS", "Frame of Reference Transformation Matrix" }, |
| 2203 | { 0x3006, 0x00c8, "LO", "Frame of Reference Transformation Comment" }, |
| 2204 | { 0x300a, 0x0002, "SH", "RT Plan Label" }, |
| 2205 | { 0x300a, 0x0003, "LO", "RT Plan Name" }, |
| 2206 | { 0x300a, 0x0004, "ST", "RT Plan Description" }, |
| 2207 | { 0x300a, 0x0006, "DA", "RT Plan Date" }, |
| 2208 | { 0x300a, 0x0007, "TM", "RT Plan Time" }, |
| 2209 | { 0x300a, 0x0009, "LO", "Treatment Protocols" }, |
| 2210 | { 0x300a, 0x000a, "CS", "Treatment Intent" }, |
| 2211 | { 0x300a, 0x000b, "LO", "Treatment Sites" }, |
| 2212 | { 0x300a, 0x000c, "CS", "RT Plan Geometry" }, |
| 2213 | { 0x300a, 0x000e, "ST", "Prescription Description" }, |
| 2214 | { 0x300a, 0x0010, "SQ", "Dose ReferenceSequence" }, |
| 2215 | { 0x300a, 0x0012, "IS", "Dose ReferenceNumber" }, |
| 2216 | { 0x300a, 0x0014, "CS", "Dose Reference Structure Type" }, |
| 2217 | { 0x300a, 0x0016, "LO", "Dose ReferenceDescription" }, |
| 2218 | { 0x300a, 0x0018, "DS", "Dose Reference Point Coordinates" }, |
| 2219 | { 0x300a, 0x001a, "DS", "Nominal Prior Dose" }, |
| 2220 | { 0x300a, 0x0020, "CS", "Dose Reference Type" }, |
| 2221 | { 0x300a, 0x0021, "DS", "Constraint Weight" }, |
| 2222 | { 0x300a, 0x0022, "DS", "Delivery Warning Dose" }, |
| 2223 | { 0x300a, 0x0023, "DS", "Delivery Maximum Dose" }, |
| 2224 | { 0x300a, 0x0025, "DS", "Target Minimum Dose" }, |
| 2225 | { 0x300a, 0x0026, "DS", "Target Prescription Dose" }, |
| 2226 | { 0x300a, 0x0027, "DS", "Target Maximum Dose" }, |
| 2227 | { 0x300a, 0x0028, "DS", "Target Underdose Volume Fraction" }, |
| 2228 | { 0x300a, 0x002a, "DS", "Organ at Risk Full-volume Dose" }, |
| 2229 | { 0x300a, 0x002b, "DS", "Organ at Risk Limit Dose" }, |
| 2230 | { 0x300a, 0x002c, "DS", "Organ at Risk Maximum Dose" }, |
| 2231 | { 0x300a, 0x002d, "DS", "Organ at Risk Overdose Volume Fraction" }, |
| 2232 | { 0x300a, 0x0040, "SQ", "Tolerance Table Sequence" }, |
| 2233 | { 0x300a, 0x0042, "IS", "Tolerance Table Number" }, |
| 2234 | { 0x300a, 0x0043, "SH", "Tolerance Table Label" }, |
| 2235 | { 0x300a, 0x0044, "DS", "Gantry Angle Tolerance" }, |
| 2236 | { 0x300a, 0x0046, "DS", "Beam Limiting Device Angle Tolerance" }, |
| 2237 | { 0x300a, 0x0048, "SQ", "Beam Limiting Device Tolerance Sequence" }, |
| 2238 | { 0x300a, 0x004a, "DS", "Beam Limiting Device Position Tolerance" }, |
| 2239 | { 0x300a, 0x004c, "DS", "Patient Support Angle Tolerance" }, |
| 2240 | { 0x300a, 0x004e, "DS", "Table Top Eccentric Angle Tolerance" }, |
| 2241 | { 0x300a, 0x0051, "DS", "Table Top Vertical Position Tolerance" }, |
| 2242 | { 0x300a, 0x0052, "DS", "Table Top Longitudinal Position Tolerance" }, |
| 2243 | { 0x300a, 0x0053, "DS", "Table Top Lateral Position Tolerance" }, |
| 2244 | { 0x300a, 0x0055, "CS", "RT Plan Relationship" }, |
| 2245 | { 0x300a, 0x0070, "SQ", "Fraction Group Sequence" }, |
| 2246 | { 0x300a, 0x0071, "IS", "Fraction Group Number" }, |
| 2247 | { 0x300a, 0x0078, "IS", "Number of Fractions Planned" }, |
| 2248 | { 0x300a, 0x0079, "IS", "Number of Fractions Per Day" }, |
| 2249 | { 0x300a, 0x007a, "IS", "Repeat Fraction Cycle Length" }, |
| 2250 | { 0x300a, 0x007b, "LT", "Fraction Pattern" }, |
| 2251 | { 0x300a, 0x0080, "IS", "Number of Beams" }, |
| 2252 | { 0x300a, 0x0082, "DS", "Beam Dose Specification Point" }, |
| 2253 | { 0x300a, 0x0084, "DS", "Beam Dose" }, |
| 2254 | { 0x300a, 0x0086, "DS", "Beam Meterset" }, |
| 2255 | { 0x300a, 0x00a0, "IS", "Number of Brachy Application Setups" }, |
| 2256 | { 0x300a, 0x00a2, "DS", "Brachy Application Setup Dose Specification Point" }, |
| 2257 | { 0x300a, 0x00a4, "DS", "Brachy Application Setup Dose" }, |
| 2258 | { 0x300a, 0x00b0, "SQ", "Beam Sequence" }, |
| 2259 | { 0x300a, 0x00b2, "SH", "Treatment Machine Name " }, |
| 2260 | { 0x300a, 0x00b3, "CS", "Primary Dosimeter Unit" }, |
| 2261 | { 0x300a, 0x00b4, "DS", "Source-Axis Distance" }, |
| 2262 | { 0x300a, 0x00b6, "SQ", "Beam Limiting Device Sequence" }, |
| 2263 | { 0x300a, 0x00b8, "CS", "RT Beam Limiting Device Type" }, |
| 2264 | { 0x300a, 0x00ba, "DS", "Source to Beam Limiting Device Distance" }, |
| 2265 | { 0x300a, 0x00bc, "IS", "Number of Leaf/Jaw Pairs" }, |
| 2266 | { 0x300a, 0x00be, "DS", "Leaf Position Boundaries" }, |
| 2267 | { 0x300a, 0x00c0, "IS", "Beam Number" }, |
| 2268 | { 0x300a, 0x00c2, "LO", "Beam Name" }, |
| 2269 | { 0x300a, 0x00c3, "ST", "Beam Description" }, |
| 2270 | { 0x300a, 0x00c4, "CS", "Beam Type" }, |
| 2271 | { 0x300a, 0x00c6, "CS", "Radiation Type" }, |
| 2272 | { 0x300a, 0x00c8, "IS", "Reference Image Number" }, |
| 2273 | { 0x300a, 0x00ca, "SQ", "Planned Verification Image Sequence" }, |
| 2274 | { 0x300a, 0x00cc, "LO", "Imaging Device Specific Acquisition Parameters" }, |
| 2275 | { 0x300a, 0x00ce, "CS", "Treatment Delivery Type" }, |
| 2276 | { 0x300a, 0x00d0, "IS", "Number of Wedges" }, |
| 2277 | { 0x300a, 0x00d1, "SQ", "Wedge Sequence" }, |
| 2278 | { 0x300a, 0x00d2, "IS", "Wedge Number" }, |
| 2279 | { 0x300a, 0x00d3, "CS", "Wedge Type" }, |
| 2280 | { 0x300a, 0x00d4, "SH", "Wedge ID" }, |
| 2281 | { 0x300a, 0x00d5, "IS", "Wedge Angle" }, |
| 2282 | { 0x300a, 0x00d6, "DS", "Wedge Factor" }, |
| 2283 | { 0x300a, 0x00d8, "DS", "Wedge Orientation" }, |
| 2284 | { 0x300a, 0x00da, "DS", "Source to Wedge Tray Distance" }, |
| 2285 | { 0x300a, 0x00e0, "IS", "Number of Compensators" }, |
| 2286 | { 0x300a, 0x00e1, "SH", "Material ID" }, |
| 2287 | { 0x300a, 0x00e2, "DS", "Total Compensator Tray Factor" }, |
| 2288 | { 0x300a, 0x00e3, "SQ", "Compensator Sequence" }, |
| 2289 | { 0x300a, 0x00e4, "IS", "Compensator Number" }, |
| 2290 | { 0x300a, 0x00e5, "SH", "Compensator ID" }, |
| 2291 | { 0x300a, 0x00e6, "DS", "Source to Compensator Tray Distance" }, |
| 2292 | { 0x300a, 0x00e7, "IS", "Compensator Rows" }, |
| 2293 | { 0x300a, 0x00e8, "IS", "Compensator Columns" }, |
| 2294 | { 0x300a, 0x00e9, "DS", "Compensator Pixel Spacing" }, |
| 2295 | { 0x300a, 0x00ea, "DS", "Compensator Position" }, |
| 2296 | { 0x300a, 0x00eb, "DS", "Compensator Transmission Data" }, |
| 2297 | { 0x300a, 0x00ec, "DS", "Compensator Thickness Data" }, |
| 2298 | { 0x300a, 0x00ed, "IS", "Number of Boli" }, |
| 2299 | { 0x300a, 0x00f0, "IS", "Number of Blocks" }, |
| 2300 | { 0x300a, 0x00f2, "DS", "Total Block Tray Factor" }, |
| 2301 | { 0x300a, 0x00f4, "SQ", "Block Sequence" }, |
| 2302 | { 0x300a, 0x00f5, "SH", "Block Tray ID" }, |
| 2303 | { 0x300a, 0x00f6, "DS", "Source to Block Tray Distance" }, |
| 2304 | { 0x300a, 0x00f8, "CS", "Block Type" }, |
| 2305 | { 0x300a, 0x00fa, "CS", "Block Divergence" }, |
| 2306 | { 0x300a, 0x00fc, "IS", "Block Number" }, |
| 2307 | { 0x300a, 0x00fe, "LO", "Block Name" }, |
| 2308 | { 0x300a, 0x0100, "DS", "Block Thickness" }, |
| 2309 | { 0x300a, 0x0102, "DS", "Block Transmission" }, |
| 2310 | { 0x300a, 0x0104, "IS", "Block Number of Points" }, |
| 2311 | { 0x300a, 0x0106, "DS", "Block Data" }, |
| 2312 | { 0x300a, 0x0107, "SQ", "Applicator Sequence" }, |
| 2313 | { 0x300a, 0x0108, "SH", "Applicator ID" }, |
| 2314 | { 0x300a, 0x0109, "CS", "Applicator Type" }, |
| 2315 | { 0x300a, 0x010a, "LO", "Applicator Description" }, |
| 2316 | { 0x300a, 0x010c, "DS", "Cumulative Dose Reference Coefficient" }, |
| 2317 | { 0x300a, 0x010e, "DS", "Final Cumulative Meterset Weight" }, |
| 2318 | { 0x300a, 0x0110, "IS", "Number of Control Points" }, |
| 2319 | { 0x300a, 0x0111, "SQ", "Control Point Sequence" }, |
| 2320 | { 0x300a, 0x0112, "IS", "Control Point Index" }, |
| 2321 | { 0x300a, 0x0114, "DS", "Nominal Beam Energy" }, |
| 2322 | { 0x300a, 0x0115, "DS", "Dose Rate Set" }, |
| 2323 | { 0x300a, 0x0116, "SQ", "Wedge Position Sequence" }, |
| 2324 | { 0x300a, 0x0118, "CS", "Wedge Position" }, |
| 2325 | { 0x300a, 0x011a, "SQ", "Beam Limiting Device Position Sequence" }, |
| 2326 | { 0x300a, 0x011c, "DS", "Leaf Jaw Positions" }, |
| 2327 | { 0x300a, 0x011e, "DS", "Gantry Angle" }, |
| 2328 | { 0x300a, 0x011f, "CS", "Gantry Rotation Direction" }, |
| 2329 | { 0x300a, 0x0120, "DS", "Beam Limiting Device Angle" }, |
| 2330 | { 0x300a, 0x0121, "CS", "Beam Limiting Device Rotation Direction" }, |
| 2331 | { 0x300a, 0x0122, "DS", "Patient Support Angle" }, |
| 2332 | { 0x300a, 0x0123, "CS", "Patient Support Rotation Direction" }, |
| 2333 | { 0x300a, 0x0124, "DS", "Table Top Eccentric Axis Distance" }, |
| 2334 | { 0x300a, 0x0125, "DS", "Table Top Eccentric Angle" }, |
| 2335 | { 0x300a, 0x0126, "CS", "Table Top Eccentric Rotation Direction" }, |
| 2336 | { 0x300a, 0x0128, "DS", "Table Top Vertical Position" }, |
| 2337 | { 0x300a, 0x0129, "DS", "Table Top Longitudinal Position" }, |
| 2338 | { 0x300a, 0x012a, "DS", "Table Top Lateral Position" }, |
| 2339 | { 0x300a, 0x012c, "DS", "Isocenter Position" }, |
| 2340 | { 0x300a, 0x012e, "DS", "Surface Entry Point" }, |
| 2341 | { 0x300a, 0x0130, "DS", "Source to Surface Distance" }, |
| 2342 | { 0x300a, 0x0134, "DS", "Cumulative Meterset Weight" }, |
| 2343 | { 0x300a, 0x0180, "SQ", "Patient Setup Sequence" }, |
| 2344 | { 0x300a, 0x0182, "IS", "Patient Setup Number" }, |
| 2345 | { 0x300a, 0x0184, "LO", "Patient Additional Position" }, |
| 2346 | { 0x300a, 0x0190, "SQ", "Fixation Device Sequence" }, |
| 2347 | { 0x300a, 0x0192, "CS", "Fixation Device Type" }, |
| 2348 | { 0x300a, 0x0194, "SH", "Fixation Device Label" }, |
| 2349 | { 0x300a, 0x0196, "ST", "Fixation Device Description" }, |
| 2350 | { 0x300a, 0x0198, "SH", "Fixation Device Position" }, |
| 2351 | { 0x300a, 0x01a0, "SQ", "Shielding Device Sequence" }, |
| 2352 | { 0x300a, 0x01a2, "CS", "Shielding Device Type" }, |
| 2353 | { 0x300a, 0x01a4, "SH", "Shielding Device Label" }, |
| 2354 | { 0x300a, 0x01a6, "ST", "Shielding Device Description" }, |
| 2355 | { 0x300a, 0x01a8, "SH", "Shielding Device Position" }, |
| 2356 | { 0x300a, 0x01b0, "CS", "Setup Technique" }, |
| 2357 | { 0x300a, 0x01b2, "ST", "Setup TechniqueDescription" }, |
| 2358 | { 0x300a, 0x01b4, "SQ", "Setup Device Sequence" }, |
| 2359 | { 0x300a, 0x01b6, "CS", "Setup Device Type" }, |
| 2360 | { 0x300a, 0x01b8, "SH", "Setup Device Label" }, |
| 2361 | { 0x300a, 0x01ba, "ST", "Setup Device Description" }, |
| 2362 | { 0x300a, 0x01bc, "DS", "Setup Device Parameter" }, |
| 2363 | { 0x300a, 0x01d0, "ST", "Setup ReferenceDescription" }, |
| 2364 | { 0x300a, 0x01d2, "DS", "Table Top Vertical Setup Displacement" }, |
| 2365 | { 0x300a, 0x01d4, "DS", "Table Top Longitudinal Setup Displacement" }, |
| 2366 | { 0x300a, 0x01d6, "DS", "Table Top Lateral Setup Displacement" }, |
| 2367 | { 0x300a, 0x0200, "CS", "Brachy Treatment Technique" }, |
| 2368 | { 0x300a, 0x0202, "CS", "Brachy Treatment Type" }, |
| 2369 | { 0x300a, 0x0206, "SQ", "Treatment Machine Sequence" }, |
| 2370 | { 0x300a, 0x0210, "SQ", "Source Sequence" }, |
| 2371 | { 0x300a, 0x0212, "IS", "Source Number" }, |
| 2372 | { 0x300a, 0x0214, "CS", "Source Type" }, |
| 2373 | { 0x300a, 0x0216, "LO", "Source Manufacturer" }, |
| 2374 | { 0x300a, 0x0218, "DS", "Active Source Diameter" }, |
| 2375 | { 0x300a, 0x021a, "DS", "Active Source Length" }, |
| 2376 | { 0x300a, 0x0222, "DS", "Source Encapsulation Nominal Thickness" }, |
| 2377 | { 0x300a, 0x0224, "DS", "Source Encapsulation Nominal Transmission" }, |
| 2378 | { 0x300a, 0x0226, "LO", "Source IsotopeName" }, |
| 2379 | { 0x300a, 0x0228, "DS", "Source Isotope Half Life" }, |
| 2380 | { 0x300a, 0x022a, "DS", "Reference Air Kerma Rate" }, |
| 2381 | { 0x300a, 0x022c, "DA", "Air Kerma Rate Reference Date" }, |
| 2382 | { 0x300a, 0x022e, "TM", "Air Kerma Rate Reference Time" }, |
| 2383 | { 0x300a, 0x0230, "SQ", "Application Setup Sequence" }, |
| 2384 | { 0x300a, 0x0232, "CS", "Application Setup Type" }, |
| 2385 | { 0x300a, 0x0234, "IS", "Application Setup Number" }, |
| 2386 | { 0x300a, 0x0236, "LO", "Application Setup Name" }, |
| 2387 | { 0x300a, 0x0238, "LO", "Application Setup Manufacturer" }, |
| 2388 | { 0x300a, 0x0240, "IS", "Template Number" }, |
| 2389 | { 0x300a, 0x0242, "SH", "Template Type" }, |
| 2390 | { 0x300a, 0x0244, "LO", "Template Name" }, |
| 2391 | { 0x300a, 0x0250, "DS", "Total Reference Air Kerma" }, |
| 2392 | { 0x300a, 0x0260, "SQ", "Brachy Accessory Device Sequence" }, |
| 2393 | { 0x300a, 0x0262, "IS", "Brachy Accessory Device Number" }, |
| 2394 | { 0x300a, 0x0263, "SH", "Brachy Accessory Device ID" }, |
| 2395 | { 0x300a, 0x0264, "CS", "Brachy Accessory Device Type" }, |
| 2396 | { 0x300a, 0x0266, "LO", "Brachy Accessory Device Name" }, |
| 2397 | { 0x300a, 0x026a, "DS", "Brachy Accessory Device Nominal Thickness" }, |
| 2398 | { 0x300a, 0x026c, "DS", "Brachy Accessory Device Nominal Transmission" }, |
| 2399 | { 0x300a, 0x0280, "SQ", "Channel Sequence" }, |
| 2400 | { 0x300a, 0x0282, "IS", "Channel Number" }, |
| 2401 | { 0x300a, 0x0284, "DS", "Channel Length" }, |
| 2402 | { 0x300a, 0x0286, "DS", "Channel Total Time" }, |
| 2403 | { 0x300a, 0x0288, "CS", "Source Movement Type" }, |
| 2404 | { 0x300a, 0x028a, "IS", "Number of Pulses" }, |
| 2405 | { 0x300a, 0x028c, "DS", "Pulse Repetition Interval" }, |
| 2406 | { 0x300a, 0x0290, "IS", "Source Applicator Number" }, |
| 2407 | { 0x300a, 0x0291, "SH", "Source Applicator ID" }, |
| 2408 | { 0x300a, 0x0292, "CS", "Source Applicator Type" }, |
| 2409 | { 0x300a, 0x0294, "LO", "Source Applicator Name" }, |
| 2410 | { 0x300a, 0x0296, "DS", "Source Applicator Length" }, |
| 2411 | { 0x300a, 0x0298, "LO", "Source Applicator Manufacturer" }, |
| 2412 | { 0x300a, 0x029c, "DS", "Source Applicator Wall Nominal Thickness" }, |
| 2413 | { 0x300a, 0x029e, "DS", "Source Applicator Wall Nominal Transmission" }, |
| 2414 | { 0x300a, 0x02a0, "DS", "Source Applicator Step Size" }, |
| 2415 | { 0x300a, 0x02a2, "IS", "Transfer Tube Number" }, |
| 2416 | { 0x300a, 0x02a4, "DS", "Transfer Tube Length" }, |
| 2417 | { 0x300a, 0x02b0, "SQ", "Channel Shield Sequence" }, |
| 2418 | { 0x300a, 0x02b2, "IS", "Channel Shield Number" }, |
| 2419 | { 0x300a, 0x02b3, "SH", "Channel Shield ID" }, |
| 2420 | { 0x300a, 0x02b4, "LO", "Channel Shield Name" }, |
| 2421 | { 0x300a, 0x02b8, "DS", "Channel Shield Nominal Thickness" }, |
| 2422 | { 0x300a, 0x02ba, "DS", "Channel Shield Nominal Transmission" }, |
| 2423 | { 0x300a, 0x02c8, "DS", "Final Cumulative Time Weight" }, |
| 2424 | { 0x300a, 0x02d0, "SQ", "Brachy Control Point Sequence" }, |
| 2425 | { 0x300a, 0x02d2, "DS", "Control Point Relative Position" }, |
| 2426 | { 0x300a, 0x02d4, "DS", "Control Point 3D Position" }, |
| 2427 | { 0x300a, 0x02d6, "DS", "Cumulative Time Weight" }, |
| 2428 | { 0x300c, 0x0002, "SQ", "Referenced RT Plan Sequence" }, |
| 2429 | { 0x300c, 0x0004, "SQ", "Referenced Beam Sequence" }, |
| 2430 | { 0x300c, 0x0006, "IS", "Referenced Beam Number" }, |
| 2431 | { 0x300c, 0x0007, "IS", "Referenced Reference Image Number" }, |
| 2432 | { 0x300c, 0x0008, "DS", "Start Cumulative Meterset Weight" }, |
| 2433 | { 0x300c, 0x0009, "DS", "End Cumulative Meterset Weight" }, |
| 2434 | { 0x300c, 0x000a, "SQ", "Referenced Brachy Application Setup Sequence" }, |
| 2435 | { 0x300c, 0x000c, "IS", "Referenced Brachy Application Setup Number" }, |
| 2436 | { 0x300c, 0x000e, "IS", "Referenced Source Number" }, |
| 2437 | { 0x300c, 0x0020, "SQ", "Referenced Fraction Group Sequence" }, |
| 2438 | { 0x300c, 0x0022, "IS", "Referenced Fraction Group Number" }, |
| 2439 | { 0x300c, 0x0040, "SQ", "Referenced Verification Image Sequence" }, |
| 2440 | { 0x300c, 0x0042, "SQ", "Referenced Reference Image Sequence" }, |
| 2441 | { 0x300c, 0x0050, "SQ", "Referenced Dose Reference Sequence" }, |
| 2442 | { 0x300c, 0x0051, "IS", "Referenced Dose Reference Number" }, |
| 2443 | { 0x300c, 0x0055, "SQ", "Brachy Referenced Dose Reference Sequence" }, |
| 2444 | { 0x300c, 0x0060, "SQ", "Referenced Structure Set Sequence" }, |
| 2445 | { 0x300c, 0x006a, "IS", "Referenced Patient Setup Number" }, |
| 2446 | { 0x300c, 0x0080, "SQ", "Referenced Dose Sequence" }, |
| 2447 | { 0x300c, 0x00a0, "IS", "Referenced Tolerance Table Number" }, |
| 2448 | { 0x300c, 0x00b0, "SQ", "Referenced Bolus Sequence" }, |
| 2449 | { 0x300c, 0x00c0, "IS", "Referenced Wedge Number" }, |
| 2450 | { 0x300c, 0x00d0, "IS", "Referenced Compensato rNumber" }, |
| 2451 | { 0x300c, 0x00e0, "IS", "Referenced Block Number" }, |
| 2452 | { 0x300c, 0x00f0, "IS", "Referenced Control Point" }, |
| 2453 | { 0x300e, 0x0002, "CS", "Approval Status" }, |
| 2454 | { 0x300e, 0x0004, "DA", "Review Date" }, |
| 2455 | { 0x300e, 0x0005, "TM", "Review Time" }, |
| 2456 | { 0x300e, 0x0008, "PN", "Reviewer Name" }, |
| 2457 | { 0x4000, 0x0000, "UL", "Text Group Length" }, |
| 2458 | { 0x4000, 0x0010, "LT", "Text Arbitrary" }, |
| 2459 | { 0x4000, 0x4000, "LT", "Text Comments" }, |
| 2460 | { 0x4008, 0x0000, "UL", "Results Group Length" }, |
| 2461 | { 0x4008, 0x0040, "SH", "Results ID" }, |
| 2462 | { 0x4008, 0x0042, "LO", "Results ID Issuer" }, |
| 2463 | { 0x4008, 0x0050, "SQ", "Referenced Interpretation Sequence" }, |
| 2464 | { 0x4008, 0x00ff, "CS", "Report Production Status" }, |
| 2465 | { 0x4008, 0x0100, "DA", "Interpretation Recorded Date" }, |
| 2466 | { 0x4008, 0x0101, "TM", "Interpretation Recorded Time" }, |
| 2467 | { 0x4008, 0x0102, "PN", "Interpretation Recorder" }, |
| 2468 | { 0x4008, 0x0103, "LO", "Reference to Recorded Sound" }, |
| 2469 | { 0x4008, 0x0108, "DA", "Interpretation Transcription Date" }, |
| 2470 | { 0x4008, 0x0109, "TM", "Interpretation Transcription Time" }, |
| 2471 | { 0x4008, 0x010a, "PN", "Interpretation Transcriber" }, |
| 2472 | { 0x4008, 0x010b, "ST", "Interpretation Text" }, |
| 2473 | { 0x4008, 0x010c, "PN", "Interpretation Author" }, |
| 2474 | { 0x4008, 0x0111, "SQ", "Interpretation Approver Sequence" }, |
| 2475 | { 0x4008, 0x0112, "DA", "Interpretation Approval Date" }, |
| 2476 | { 0x4008, 0x0113, "TM", "Interpretation Approval Time" }, |
| 2477 | { 0x4008, 0x0114, "PN", "Physician Approving Interpretation" }, |
| 2478 | { 0x4008, 0x0115, "LT", "Interpretation Diagnosis Description" }, |
| 2479 | { 0x4008, 0x0117, "SQ", "InterpretationDiagnosis Code Sequence" }, |
| 2480 | { 0x4008, 0x0118, "SQ", "Results Distribution List Sequence" }, |
| 2481 | { 0x4008, 0x0119, "PN", "Distribution Name" }, |
| 2482 | { 0x4008, 0x011a, "LO", "Distribution Address" }, |
| 2483 | { 0x4008, 0x0200, "SH", "Interpretation ID" }, |
| 2484 | { 0x4008, 0x0202, "LO", "Interpretation ID Issuer" }, |
| 2485 | { 0x4008, 0x0210, "CS", "Interpretation Type ID" }, |
| 2486 | { 0x4008, 0x0212, "CS", "Interpretation Status ID" }, |
| 2487 | { 0x4008, 0x0300, "ST", "Impressions" }, |
| 2488 | { 0x4008, 0x4000, "ST", "Results Comments" }, |
| 2489 | { 0x4009, 0x0001, "LT", "Report ID" }, |
| 2490 | { 0x4009, 0x0020, "LT", "Report Status" }, |
| 2491 | { 0x4009, 0x0030, "DA", "Report Creation Date" }, |
| 2492 | { 0x4009, 0x0070, "LT", "Report Approving Physician" }, |
| 2493 | { 0x4009, 0x00e0, "LT", "Report Text" }, |
| 2494 | { 0x4009, 0x00e1, "LT", "Report Author" }, |
| 2495 | { 0x4009, 0x00e3, "LT", "Reporting Radiologist" }, |
| 2496 | { 0x5000, 0x0000, "UL", "Curve Group Length" }, |
| 2497 | { 0x5000, 0x0005, "US", "Curve Dimensions" }, |
| 2498 | { 0x5000, 0x0010, "US", "Number of Points" }, |
| 2499 | { 0x5000, 0x0020, "CS", "Type of Data" }, |
| 2500 | { 0x5000, 0x0022, "LO", "Curve Description" }, |
| 2501 | { 0x5000, 0x0030, "SH", "Axis Units" }, |
| 2502 | { 0x5000, 0x0040, "SH", "Axis Labels" }, |
| 2503 | { 0x5000, 0x0103, "US", "Data Value Representation" }, |
| 2504 | { 0x5000, 0x0104, "US", "Minimum Coordinate Value" }, |
| 2505 | { 0x5000, 0x0105, "US", "Maximum Coordinate Value" }, |
| 2506 | { 0x5000, 0x0106, "SH", "Curve Range" }, |
| 2507 | { 0x5000, 0x0110, "US", "Curve Data Descriptor" }, |
| 2508 | { 0x5000, 0x0112, "US", "Coordinate Start Value" }, |
| 2509 | { 0x5000, 0x0114, "US", "Coordinate Step Value" }, |
| 2510 | { 0x5000, 0x1001, "CS", "Curve Activation Layer" }, |
| 2511 | { 0x5000, 0x2000, "US", "Audio Type" }, |
| 2512 | { 0x5000, 0x2002, "US", "Audio Sample Format" }, |
| 2513 | { 0x5000, 0x2004, "US", "Number of Channels" }, |
| 2514 | { 0x5000, 0x2006, "UL", "Number of Samples" }, |
| 2515 | { 0x5000, 0x2008, "UL", "Sample Rate" }, |
| 2516 | { 0x5000, 0x200a, "UL", "Total Time" }, |
| 2517 | { 0x5000, 0x200c, "xs", "Audio Sample Data" }, |
| 2518 | { 0x5000, 0x200e, "LT", "Audio Comments" }, |
| 2519 | { 0x5000, 0x2500, "LO", "Curve Label" }, |
| 2520 | { 0x5000, 0x2600, "SQ", "CurveReferenced Overlay Sequence" }, |
| 2521 | { 0x5000, 0x2610, "US", "CurveReferenced Overlay Group" }, |
| 2522 | { 0x5000, 0x3000, "OW", "Curve Data" }, |
| 2523 | { 0x6000, 0x0000, "UL", "Overlay Group Length" }, |
| 2524 | { 0x6000, 0x0001, "US", "Gray Palette Color Lookup Table Descriptor" }, |
| 2525 | { 0x6000, 0x0002, "US", "Gray Palette Color Lookup Table Data" }, |
| 2526 | { 0x6000, 0x0010, "US", "Overlay Rows" }, |
| 2527 | { 0x6000, 0x0011, "US", "Overlay Columns" }, |
| 2528 | { 0x6000, 0x0012, "US", "Overlay Planes" }, |
| 2529 | { 0x6000, 0x0015, "IS", "Number of Frames in Overlay" }, |
| 2530 | { 0x6000, 0x0022, "LO", "Overlay Description" }, |
| 2531 | { 0x6000, 0x0040, "CS", "Overlay Type" }, |
| 2532 | { 0x6000, 0x0045, "CS", "Overlay Subtype" }, |
| 2533 | { 0x6000, 0x0050, "SS", "Overlay Origin" }, |
| 2534 | { 0x6000, 0x0051, "US", "Image Frame Origin" }, |
| 2535 | { 0x6000, 0x0052, "US", "Plane Origin" }, |
| 2536 | { 0x6000, 0x0060, "LO", "Overlay Compression Code" }, |
| 2537 | { 0x6000, 0x0061, "SH", "Overlay Compression Originator" }, |
| 2538 | { 0x6000, 0x0062, "SH", "Overlay Compression Label" }, |
| 2539 | { 0x6000, 0x0063, "SH", "Overlay Compression Description" }, |
| 2540 | { 0x6000, 0x0066, "AT", "Overlay Compression Step Pointers" }, |
| 2541 | { 0x6000, 0x0068, "US", "Overlay Repeat Interval" }, |
| 2542 | { 0x6000, 0x0069, "US", "Overlay Bits Grouped" }, |
| 2543 | { 0x6000, 0x0100, "US", "Overlay Bits Allocated" }, |
| 2544 | { 0x6000, 0x0102, "US", "Overlay Bit Position" }, |
| 2545 | { 0x6000, 0x0110, "LO", "Overlay Format" }, |
| 2546 | { 0x6000, 0x0200, "xs", "Overlay Location" }, |
| 2547 | { 0x6000, 0x0800, "LO", "Overlay Code Label" }, |
| 2548 | { 0x6000, 0x0802, "US", "Overlay Number of Tables" }, |
| 2549 | { 0x6000, 0x0803, "AT", "Overlay Code Table Location" }, |
| 2550 | { 0x6000, 0x0804, "US", "Overlay Bits For Code Word" }, |
| 2551 | { 0x6000, 0x1001, "CS", "Overlay Activation Layer" }, |
| 2552 | { 0x6000, 0x1100, "US", "Overlay Descriptor - Gray" }, |
| 2553 | { 0x6000, 0x1101, "US", "Overlay Descriptor - Red" }, |
| 2554 | { 0x6000, 0x1102, "US", "Overlay Descriptor - Green" }, |
| 2555 | { 0x6000, 0x1103, "US", "Overlay Descriptor - Blue" }, |
| 2556 | { 0x6000, 0x1200, "US", "Overlays - Gray" }, |
| 2557 | { 0x6000, 0x1201, "US", "Overlays - Red" }, |
| 2558 | { 0x6000, 0x1202, "US", "Overlays - Green" }, |
| 2559 | { 0x6000, 0x1203, "US", "Overlays - Blue" }, |
| 2560 | { 0x6000, 0x1301, "IS", "ROI Area" }, |
| 2561 | { 0x6000, 0x1302, "DS", "ROI Mean" }, |
| 2562 | { 0x6000, 0x1303, "DS", "ROI Standard Deviation" }, |
| 2563 | { 0x6000, 0x1500, "LO", "Overlay Label" }, |
| 2564 | { 0x6000, 0x3000, "OW", "Overlay Data" }, |
| 2565 | { 0x6000, 0x4000, "LT", "Overlay Comments" }, |
| 2566 | { 0x6001, 0x0000, "UN", "?" }, |
| 2567 | { 0x6001, 0x0010, "LO", "?" }, |
| 2568 | { 0x6001, 0x1010, "xs", "?" }, |
| 2569 | { 0x6001, 0x1030, "xs", "?" }, |
| 2570 | { 0x6021, 0x0000, "xs", "?" }, |
| 2571 | { 0x6021, 0x0010, "xs", "?" }, |
| 2572 | { 0x7001, 0x0010, "LT", "Dummy" }, |
| 2573 | { 0x7003, 0x0010, "LT", "Info" }, |
| 2574 | { 0x7005, 0x0010, "LT", "Dummy" }, |
| 2575 | { 0x7000, 0x0004, "ST", "TextAnnotation" }, |
| 2576 | { 0x7000, 0x0005, "IS", "Box" }, |
| 2577 | { 0x7000, 0x0007, "IS", "ArrowEnd" }, |
| 2578 | { 0x7fe0, 0x0000, "UL", "Pixel Data Group Length" }, |
| 2579 | { 0x7fe0, 0x0010, "xs", "Pixel Data" }, |
| 2580 | { 0x7fe0, 0x0020, "OW", "Coefficients SDVN" }, |
| 2581 | { 0x7fe0, 0x0030, "OW", "Coefficients SDHN" }, |
| 2582 | { 0x7fe0, 0x0040, "OW", "Coefficients SDDN" }, |
| 2583 | { 0x7fe1, 0x0010, "xs", "Pixel Data" }, |
| 2584 | { 0x7f00, 0x0000, "UL", "Variable Pixel Data Group Length" }, |
| 2585 | { 0x7f00, 0x0010, "xs", "Variable Pixel Data" }, |
| 2586 | { 0x7f00, 0x0011, "US", "Variable Next Data Group" }, |
| 2587 | { 0x7f00, 0x0020, "OW", "Variable Coefficients SDVN" }, |
| 2588 | { 0x7f00, 0x0030, "OW", "Variable Coefficients SDHN" }, |
| 2589 | { 0x7f00, 0x0040, "OW", "Variable Coefficients SDDN" }, |
| 2590 | { 0x7fe1, 0x0000, "OB", "Binary Data" }, |
| 2591 | { 0x7fe3, 0x0000, "LT", "Image Graphics Format Code" }, |
| 2592 | { 0x7fe3, 0x0010, "OB", "Image Graphics" }, |
| 2593 | { 0x7fe3, 0x0020, "OB", "Image Graphics Dummy" }, |
| 2594 | { 0x7ff1, 0x0001, "US", "?" }, |
| 2595 | { 0x7ff1, 0x0002, "US", "?" }, |
| 2596 | { 0x7ff1, 0x0003, "xs", "?" }, |
| 2597 | { 0x7ff1, 0x0004, "IS", "?" }, |
| 2598 | { 0x7ff1, 0x0005, "US", "?" }, |
| 2599 | { 0x7ff1, 0x0007, "US", "?" }, |
| 2600 | { 0x7ff1, 0x0008, "US", "?" }, |
| 2601 | { 0x7ff1, 0x0009, "US", "?" }, |
| 2602 | { 0x7ff1, 0x000a, "LT", "?" }, |
| 2603 | { 0x7ff1, 0x000b, "US", "?" }, |
| 2604 | { 0x7ff1, 0x000c, "US", "?" }, |
| 2605 | { 0x7ff1, 0x000d, "US", "?" }, |
| 2606 | { 0x7ff1, 0x0010, "US", "?" }, |
| 2607 | { 0xfffc, 0xfffc, "OB", "Data Set Trailing Padding" }, |
| 2608 | { 0xfffe, 0xe000, "!!", "Item" }, |
| 2609 | { 0xfffe, 0xe00d, "!!", "Item Delimitation Item" }, |
| 2610 | { 0xfffe, 0xe0dd, "!!", "Sequence Delimitation Item" }, |
| 2611 | { 0xffff, 0xffff, "xs", "" } |
| 2612 | }; |
| 2613 | |
| 2614 | /* |
| 2615 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2616 | % % |
| 2617 | % % |
| 2618 | % % |
| 2619 | % I s D C M % |
| 2620 | % % |
| 2621 | % % |
| 2622 | % % |
| 2623 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2624 | % |
| 2625 | % IsDCM() returns MagickTrue if the image format type, identified by the |
| 2626 | % magick string, is DCM. |
| 2627 | % |
| 2628 | % The format of the ReadDCMImage method is: |
| 2629 | % |
| 2630 | % MagickBooleanType IsDCM(const unsigned char *magick,const size_t length) |
| 2631 | % |
| 2632 | % A description of each parameter follows: |
| 2633 | % |
| 2634 | % o magick: compare image format pattern against these bytes. |
| 2635 | % |
| 2636 | % o length: Specifies the length of the magick string. |
| 2637 | % |
| 2638 | */ |
| 2639 | static MagickBooleanType IsDCM(const unsigned char *magick,const size_t length) |
| 2640 | { |
| 2641 | if (length < 132) |
| 2642 | return(MagickFalse); |
| 2643 | if (LocaleNCompare((char *) (magick+128),"DICM",4) == 0) |
| 2644 | return(MagickTrue); |
| 2645 | return(MagickFalse); |
| 2646 | } |
| 2647 | |
| 2648 | /* |
| 2649 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2650 | % % |
| 2651 | % % |
| 2652 | % % |
| 2653 | % R e a d D C M I m a g e % |
| 2654 | % % |
| 2655 | % % |
| 2656 | % % |
| 2657 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2658 | % |
| 2659 | % ReadDCMImage() reads a Digital Imaging and Communications in Medicine |
| 2660 | % (DICOM) file and returns it. It allocates the memory necessary for the |
| 2661 | % new Image structure and returns a pointer to the new image. |
| 2662 | % |
| 2663 | % The format of the ReadDCMImage method is: |
| 2664 | % |
| 2665 | % Image *ReadDCMImage(const ImageInfo *image_info,ExceptionInfo *exception) |
| 2666 | % |
| 2667 | % A description of each parameter follows: |
| 2668 | % |
| 2669 | % o image_info: the image info. |
| 2670 | % |
| 2671 | % o exception: return any errors or warnings in this structure. |
| 2672 | % |
| 2673 | */ |
| 2674 | |
| 2675 | static inline size_t MagickMax(const size_t x,const size_t y) |
| 2676 | { |
| 2677 | if (x > y) |
| 2678 | return(x); |
| 2679 | return(y); |
| 2680 | } |
| 2681 | |
| 2682 | static inline size_t MagickMin(const size_t x,const size_t y) |
| 2683 | { |
| 2684 | if (x < y) |
| 2685 | return(x); |
| 2686 | return(y); |
| 2687 | } |
| 2688 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 2689 | typedef struct _DCMStreamInfo |
| 2690 | { |
| 2691 | size_t |
| 2692 | remaining, |
| 2693 | segment_count; |
| 2694 | |
| 2695 | ssize_t |
| 2696 | segments[15]; |
| 2697 | |
| 2698 | size_t |
| 2699 | offset_count; |
| 2700 | |
| 2701 | ssize_t |
| 2702 | *offsets; |
| 2703 | |
| 2704 | ssize_t |
| 2705 | count; |
| 2706 | |
| 2707 | int |
| 2708 | byte; |
| 2709 | } DCMStreamInfo; |
| 2710 | |
| 2711 | static int ReadDCMByte(DCMStreamInfo *stream_info,Image *image) |
| 2712 | { |
| 2713 | if (image->compression != RLECompression) |
| 2714 | return(ReadBlobByte(image)); |
| 2715 | if (stream_info->count == 0) |
| 2716 | { |
| 2717 | int |
| 2718 | byte; |
| 2719 | |
| 2720 | ssize_t |
| 2721 | count; |
| 2722 | |
| 2723 | if (stream_info->remaining <= 2) |
| 2724 | stream_info->remaining=0; |
| 2725 | else |
| 2726 | stream_info->remaining-=2; |
| 2727 | count=(ssize_t) ReadBlobByte(image); |
| 2728 | byte=ReadBlobByte(image); |
| 2729 | if (count == 128) |
| 2730 | return(0); |
| 2731 | else |
| 2732 | if (count < 128) |
| 2733 | { |
| 2734 | /* |
| 2735 | Literal bytes. |
| 2736 | */ |
| 2737 | stream_info->count=count; |
| 2738 | stream_info->byte=(-1); |
| 2739 | return(byte); |
| 2740 | } |
| 2741 | else |
| 2742 | { |
| 2743 | /* |
| 2744 | Repeated bytes. |
| 2745 | */ |
| 2746 | stream_info->count=256-count; |
| 2747 | stream_info->byte=byte; |
| 2748 | return(byte); |
| 2749 | } |
| 2750 | } |
| 2751 | stream_info->count--; |
| 2752 | if (stream_info->byte >= 0) |
| 2753 | return(stream_info->byte); |
| 2754 | if (stream_info->remaining > 0) |
| 2755 | stream_info->remaining--; |
| 2756 | return(ReadBlobByte(image)); |
| 2757 | } |
| 2758 | |
| 2759 | static unsigned short ReadDCMLSBShort(DCMStreamInfo *stream_info,Image *image) |
| 2760 | { |
| 2761 | unsigned short |
| 2762 | value; |
| 2763 | |
| 2764 | if (image->compression != RLECompression) |
| 2765 | return(ReadBlobLSBShort(image)); |
| 2766 | value=ReadDCMByte(stream_info,image) | (unsigned short) |
| 2767 | (ReadDCMByte(stream_info,image) << 4); |
| 2768 | return(value); |
| 2769 | } |
| 2770 | |
| 2771 | static unsigned short ReadDCMMSBShort(DCMStreamInfo *stream_info,Image *image) |
| 2772 | { |
| 2773 | unsigned short |
| 2774 | value; |
| 2775 | |
| 2776 | if (image->compression != RLECompression) |
| 2777 | return(ReadBlobMSBShort(image)); |
| 2778 | value=(ReadDCMByte(stream_info,image) << 4) | (unsigned short) |
| 2779 | ReadDCMByte(stream_info,image); |
| 2780 | return(value); |
| 2781 | } |
| 2782 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2783 | static Image *ReadDCMImage(const ImageInfo *image_info,ExceptionInfo *exception) |
| 2784 | { |
| 2785 | char |
| 2786 | explicit_vr[MaxTextExtent], |
| 2787 | implicit_vr[MaxTextExtent], |
| 2788 | magick[MaxTextExtent], |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 2789 | photometric[MaxTextExtent]; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2790 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 2791 | DCMStreamInfo |
| 2792 | *stream_info; |
| 2793 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2794 | Image |
| 2795 | *image; |
| 2796 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 2797 | int |
| 2798 | *graymap, |
| 2799 | index; |
| 2800 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2801 | long |
| 2802 | element, |
| 2803 | group, |
| 2804 | scene, |
| 2805 | window_center, |
| 2806 | y; |
| 2807 | |
| 2808 | MagickBooleanType |
| 2809 | explicit_file, |
| 2810 | use_explicit, |
| 2811 | explicit_retry, |
| 2812 | polarity; |
| 2813 | |
| 2814 | MagickOffsetType |
| 2815 | offset; |
| 2816 | |
| 2817 | Quantum |
| 2818 | *scale; |
| 2819 | |
| 2820 | register IndexPacket |
| 2821 | *indexes; |
| 2822 | |
| 2823 | register long |
| 2824 | i, |
| 2825 | x; |
| 2826 | |
| 2827 | register PixelPacket |
| 2828 | *q; |
| 2829 | |
| 2830 | register unsigned char |
| 2831 | *p; |
| 2832 | |
| 2833 | ssize_t |
| 2834 | count; |
| 2835 | |
| 2836 | size_t |
| 2837 | length; |
| 2838 | |
| 2839 | unsigned char |
| 2840 | *data; |
| 2841 | |
| 2842 | unsigned long |
| 2843 | bits_allocated, |
| 2844 | bytes_per_pixel, |
| 2845 | datum, |
| 2846 | height, |
| 2847 | high_bit, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2848 | mask, |
| 2849 | max_value, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2850 | number_scenes, |
| 2851 | quantum, |
| 2852 | samples_per_pixel, |
| 2853 | signed_data, |
| 2854 | significant_bits, |
| 2855 | status, |
| 2856 | width, |
| 2857 | window_width; |
| 2858 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2859 | /* |
| 2860 | Open image file. |
| 2861 | */ |
| 2862 | assert(image_info != (const ImageInfo *) NULL); |
| 2863 | assert(image_info->signature == MagickSignature); |
| 2864 | if (image_info->debug != MagickFalse) |
| 2865 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 2866 | image_info->filename); |
| 2867 | assert(exception != (ExceptionInfo *) NULL); |
| 2868 | assert(exception->signature == MagickSignature); |
| 2869 | image=AcquireImage(image_info); |
| 2870 | status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); |
| 2871 | if (status == MagickFalse) |
| 2872 | { |
| 2873 | image=DestroyImageList(image); |
| 2874 | return((Image *) NULL); |
| 2875 | } |
| 2876 | image->depth=8UL; |
| 2877 | /* |
| 2878 | Read DCM preamble. |
| 2879 | */ |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 2880 | stream_info=(DCMStreamInfo *) AcquireAlignedMemory(1,sizeof(*stream_info)); |
| 2881 | if (stream_info == (DCMStreamInfo *) NULL) |
| 2882 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| 2883 | (void) ResetMagickMemory(stream_info,0,sizeof(*stream_info)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2884 | count=ReadBlob(image,128,(unsigned char *) magick); |
| 2885 | if (count != 128) |
| 2886 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 2887 | count=ReadBlob(image,4,(unsigned char *) magick); |
| 2888 | if ((count != 4) || (LocaleNCompare(magick,"DICM",4) != 0)) |
| 2889 | { |
| 2890 | offset=SeekBlob(image,0L,SEEK_SET); |
| 2891 | if (offset < 0) |
| 2892 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 2893 | } |
| 2894 | /* |
| 2895 | Read DCM Medical image. |
| 2896 | */ |
| 2897 | (void) CopyMagickString(photometric,"MONOCHROME1 ",MaxTextExtent); |
| 2898 | bits_allocated=8; |
| 2899 | bytes_per_pixel=1; |
| 2900 | high_bit=0; |
| 2901 | polarity=MagickFalse; |
| 2902 | data=(unsigned char *) NULL; |
| 2903 | element=0; |
| 2904 | explicit_vr[2]='\0'; |
| 2905 | explicit_file=MagickFalse; |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 2906 | graymap=(int *) NULL; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2907 | height=0; |
| 2908 | max_value=255UL; |
| 2909 | mask=0xffff; |
| 2910 | number_scenes=1; |
| 2911 | samples_per_pixel=1; |
| 2912 | scale=(Quantum *) NULL; |
| 2913 | signed_data=(~0UL); |
| 2914 | significant_bits=0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2915 | use_explicit=MagickFalse; |
| 2916 | explicit_retry = MagickFalse; |
| 2917 | width=0; |
| 2918 | window_center=0; |
| 2919 | window_width=0; |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 2920 | for (group=0; (group != 0x7FE0) || (element != 0x0010); ) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2921 | { |
| 2922 | /* |
| 2923 | Read a group. |
| 2924 | */ |
| 2925 | image->offset=(long) TellBlob(image); |
| 2926 | group=(long) ReadBlobLSBShort(image); |
| 2927 | element=(long) ReadBlobLSBShort(image); |
| 2928 | quantum=0; |
| 2929 | /* |
| 2930 | Find corresponding VR for this group and element. |
| 2931 | */ |
| 2932 | for (i=0; dicom_info[i].group < 0xffff; i++) |
| 2933 | if ((group == (long) dicom_info[i].group) && |
| 2934 | (element == (long) dicom_info[i].element)) |
| 2935 | break; |
| 2936 | (void) CopyMagickString(implicit_vr,dicom_info[i].vr,MaxTextExtent); |
| 2937 | count=ReadBlob(image,2,(unsigned char *) explicit_vr); |
| 2938 | /* |
| 2939 | Check for "explicitness", but meta-file headers always explicit. |
| 2940 | */ |
| 2941 | if ((explicit_file == MagickFalse) && (group != 0x0002)) |
| 2942 | explicit_file=(isupper((int) *explicit_vr) != MagickFalse) && |
| 2943 | (isupper((int) *(explicit_vr+1)) != MagickFalse) ? MagickTrue : |
| 2944 | MagickFalse; |
| 2945 | use_explicit=((group == 0x0002) && (explicit_retry == MagickFalse)) || |
| 2946 | (explicit_file != MagickFalse) ? MagickTrue : MagickFalse; |
| 2947 | if ((use_explicit != MagickFalse) && (strcmp(implicit_vr,"xs") == 0)) |
| 2948 | (void) CopyMagickString(implicit_vr,explicit_vr,MaxTextExtent); |
| 2949 | if ((use_explicit == MagickFalse) || (strcmp(implicit_vr,"!!") == 0)) |
| 2950 | { |
| 2951 | offset=SeekBlob(image,(MagickOffsetType) -2,SEEK_CUR); |
| 2952 | if (offset < 0) |
| 2953 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 2954 | quantum=4; |
| 2955 | } |
| 2956 | else |
| 2957 | { |
| 2958 | /* |
| 2959 | Assume explicit type. |
| 2960 | */ |
| 2961 | quantum=2; |
| 2962 | if ((strcmp(explicit_vr,"OB") == 0) || |
| 2963 | (strcmp(explicit_vr,"UN") == 0) || |
| 2964 | (strcmp(explicit_vr,"OW") == 0) || (strcmp(explicit_vr,"SQ") == 0)) |
| 2965 | { |
| 2966 | (void) ReadBlobLSBShort(image); |
| 2967 | quantum=4; |
| 2968 | } |
| 2969 | } |
| 2970 | datum=0; |
| 2971 | if (quantum == 4) |
| 2972 | datum=(unsigned long) ReadBlobLSBLong(image); |
| 2973 | else |
| 2974 | if (quantum == 2) |
| 2975 | datum=(unsigned long) ReadBlobLSBShort(image); |
| 2976 | quantum=0; |
| 2977 | length=1; |
| 2978 | if (datum != 0) |
| 2979 | { |
| 2980 | if ((strcmp(implicit_vr,"SS") == 0) || |
| 2981 | (strcmp(implicit_vr,"US") == 0)) |
| 2982 | quantum=2; |
| 2983 | else |
| 2984 | if ((strcmp(implicit_vr,"UL") == 0) || |
| 2985 | (strcmp(implicit_vr,"SL") == 0) || |
| 2986 | (strcmp(implicit_vr,"FL") == 0)) |
| 2987 | quantum=4; |
| 2988 | else |
| 2989 | if (strcmp(implicit_vr,"FD") != 0) |
| 2990 | quantum=1; |
| 2991 | else |
| 2992 | quantum=8; |
| 2993 | if (datum != ~0U) |
| 2994 | length=(size_t) datum/quantum; |
| 2995 | else |
| 2996 | { |
| 2997 | /* |
| 2998 | Sequence and item of undefined length. |
| 2999 | */ |
| 3000 | quantum=0; |
| 3001 | length=0; |
| 3002 | } |
| 3003 | } |
| 3004 | if (image_info->verbose != MagickFalse) |
| 3005 | { |
| 3006 | /* |
| 3007 | Display Dicom info. |
| 3008 | */ |
| 3009 | if (use_explicit == MagickFalse) |
| 3010 | explicit_vr[0]='\0'; |
| 3011 | for (i=0; dicom_info[i].description != (char *) NULL; i++) |
| 3012 | if ((group == (long) dicom_info[i].group) && |
| 3013 | (element == (long) dicom_info[i].element)) |
| 3014 | break; |
| 3015 | (void) fprintf(stdout,"0x%04lX %4ld %s-%s (0x%04lx,0x%04lx)", |
| 3016 | (unsigned long) image->offset,(long) length,implicit_vr, |
| 3017 | explicit_vr,(unsigned long) group,(unsigned long) element); |
| 3018 | if (dicom_info[i].description != (char *) NULL) |
| 3019 | (void) fprintf(stdout," %s",dicom_info[i].description); |
| 3020 | (void) fprintf(stdout,": "); |
| 3021 | } |
| 3022 | if ((group == 0x7FE0) && (element == 0x0010)) |
| 3023 | { |
| 3024 | if (image_info->verbose != MagickFalse) |
| 3025 | (void) fprintf(stdout,"\n"); |
| 3026 | break; |
| 3027 | } |
| 3028 | /* |
| 3029 | Allocate space and read an array. |
| 3030 | */ |
| 3031 | data=(unsigned char *) NULL; |
| 3032 | if ((length == 1) && (quantum == 1)) |
| 3033 | datum=(unsigned long) ReadBlobByte(image); |
| 3034 | else |
| 3035 | if ((length == 1) && (quantum == 2)) |
| 3036 | datum=(unsigned long) ReadBlobLSBShort(image); |
| 3037 | else |
| 3038 | if ((length == 1) && (quantum == 4)) |
| 3039 | datum=(unsigned long) ReadBlobLSBLong(image); |
| 3040 | else |
| 3041 | if ((quantum != 0) && (length != 0)) |
| 3042 | { |
| 3043 | data=(unsigned char *) NULL; |
| 3044 | if (~length >= 1) |
| 3045 | data=(unsigned char *) AcquireQuantumMemory(length+1,quantum* |
| 3046 | sizeof(*data)); |
| 3047 | if (data == (unsigned char *) NULL) |
| 3048 | ThrowReaderException(ResourceLimitError, |
| 3049 | "MemoryAllocationFailed"); |
| 3050 | count=ReadBlob(image,(size_t) quantum*length,data); |
| 3051 | if (count != (ssize_t) (quantum*length)) |
| 3052 | { |
| 3053 | (void) fprintf(stderr,"count=%d quantum=%d length=%d " |
| 3054 | "group=%d\n",(int) count,(int) quantum,(int) length,(int) |
| 3055 | group); |
| 3056 | ThrowReaderException(CorruptImageError, |
| 3057 | "InsufficientImageDataInFile"); |
| 3058 | } |
| 3059 | data[length*quantum]='\0'; |
| 3060 | } |
| 3061 | switch (group) |
| 3062 | { |
| 3063 | case 0x0002: |
| 3064 | { |
| 3065 | switch (element) |
| 3066 | { |
| 3067 | case 0x0010: |
| 3068 | { |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3069 | char |
| 3070 | transfer_syntax[MaxTextExtent]; |
| 3071 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3072 | /* |
| 3073 | Transfer Syntax. |
| 3074 | */ |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3075 | if ((datum == 0) && (explicit_retry == MagickFalse)) |
| 3076 | { |
| 3077 | explicit_retry=MagickTrue; |
| 3078 | (void) SeekBlob(image,(MagickOffsetType) 0,SEEK_SET); |
| 3079 | group=0; |
| 3080 | element=0; |
| 3081 | if (image_info->verbose != MagickFalse) |
| 3082 | (void) fprintf(stderr, |
| 3083 | "Corrupted image - trying explicit format\n"); |
| 3084 | break; |
| 3085 | } |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3086 | *transfer_syntax='\0'; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3087 | if (data != (unsigned char *) NULL) |
| 3088 | (void) CopyMagickString(transfer_syntax,(char *) data, |
| 3089 | MaxTextExtent); |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3090 | if (image_info->verbose != MagickFalse) |
| 3091 | (void) fprintf(stderr,"transfer_syntax=%s\n",(const char*) |
| 3092 | transfer_syntax); |
| 3093 | if (strncmp(transfer_syntax,"1.2.840.10008.1.2",17) == 0) |
| 3094 | { |
| 3095 | int |
| 3096 | subtype, |
| 3097 | type; |
| 3098 | |
| 3099 | type=0; |
| 3100 | subtype=0; |
| 3101 | (void) sscanf(transfer_syntax+17,".%d.%d",&type,&subtype); |
| 3102 | switch (type) |
| 3103 | { |
| 3104 | case 1: |
| 3105 | { |
| 3106 | image->endian=LSBEndian; |
| 3107 | break; |
| 3108 | } |
| 3109 | case 2: |
| 3110 | { |
| 3111 | image->endian=MSBEndian; |
| 3112 | break; |
| 3113 | } |
| 3114 | case 4: |
| 3115 | { |
| 3116 | if ((subtype >= 80) && (subtype <= 81)) |
| 3117 | image->compression=JPEGCompression; |
| 3118 | else |
| 3119 | if ((subtype >= 90) && (subtype <= 93)) |
| 3120 | image->compression=JPEG2000Compression; |
| 3121 | else |
| 3122 | image->compression=JPEGCompression; |
| 3123 | break; |
| 3124 | } |
| 3125 | case 5: |
| 3126 | { |
| 3127 | image->compression=RLECompression; |
| 3128 | break; |
| 3129 | } |
| 3130 | } |
| 3131 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3132 | break; |
| 3133 | } |
| 3134 | default: |
| 3135 | break; |
| 3136 | } |
| 3137 | break; |
| 3138 | } |
| 3139 | case 0x0028: |
| 3140 | { |
| 3141 | switch (element) |
| 3142 | { |
| 3143 | case 0x0002: |
| 3144 | { |
| 3145 | /* |
| 3146 | Samples per pixel. |
| 3147 | */ |
| 3148 | samples_per_pixel=datum; |
| 3149 | break; |
| 3150 | } |
| 3151 | case 0x0004: |
| 3152 | { |
| 3153 | /* |
| 3154 | Photometric interpretation. |
| 3155 | */ |
| 3156 | for (i=0; i < (long) MagickMin(length,MaxTextExtent-1); i++) |
| 3157 | photometric[i]=(char) data[i]; |
| 3158 | photometric[i]='\0'; |
| 3159 | polarity=LocaleCompare(photometric,"MONOCHROME1 ") == 0 ? |
| 3160 | MagickTrue : MagickFalse; |
| 3161 | break; |
| 3162 | } |
| 3163 | case 0x0006: |
| 3164 | { |
| 3165 | /* |
| 3166 | Planar configuration. |
| 3167 | */ |
| 3168 | if (datum == 1) |
| 3169 | image->interlace=PlaneInterlace; |
| 3170 | break; |
| 3171 | } |
| 3172 | case 0x0008: |
| 3173 | { |
| 3174 | /* |
| 3175 | Number of frames. |
| 3176 | */ |
cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 3177 | number_scenes=StringToUnsignedLong((char *) data); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3178 | break; |
| 3179 | } |
| 3180 | case 0x0010: |
| 3181 | { |
| 3182 | /* |
| 3183 | Image rows. |
| 3184 | */ |
| 3185 | height=datum; |
| 3186 | break; |
| 3187 | } |
| 3188 | case 0x0011: |
| 3189 | { |
| 3190 | /* |
| 3191 | Image columns. |
| 3192 | */ |
| 3193 | width=datum; |
| 3194 | break; |
| 3195 | } |
| 3196 | case 0x0100: |
| 3197 | { |
| 3198 | /* |
| 3199 | Bits allocated. |
| 3200 | */ |
| 3201 | bits_allocated=datum; |
| 3202 | bytes_per_pixel=1; |
| 3203 | if (datum > 8) |
| 3204 | bytes_per_pixel=2; |
| 3205 | image->depth=bits_allocated; |
| 3206 | if (image->depth > 32) |
| 3207 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 3208 | max_value=(1UL << bits_allocated)-1; |
| 3209 | break; |
| 3210 | } |
| 3211 | case 0x0101: |
| 3212 | { |
| 3213 | /* |
| 3214 | Bits stored. |
| 3215 | */ |
| 3216 | significant_bits=datum; |
| 3217 | bytes_per_pixel=1; |
| 3218 | if (significant_bits > 8) |
| 3219 | bytes_per_pixel=2; |
| 3220 | image->depth=significant_bits; |
| 3221 | if (image->depth > 32) |
| 3222 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 3223 | max_value=(1UL << significant_bits)-1; |
| 3224 | mask=(unsigned long) GetQuantumRange(significant_bits); |
| 3225 | break; |
| 3226 | } |
| 3227 | case 0x0102: |
| 3228 | { |
| 3229 | /* |
| 3230 | High bit. |
| 3231 | */ |
| 3232 | break; |
| 3233 | } |
| 3234 | case 0x0103: |
| 3235 | { |
| 3236 | /* |
| 3237 | Pixel representation. |
| 3238 | */ |
| 3239 | signed_data=datum; |
| 3240 | break; |
| 3241 | } |
| 3242 | case 0x1050: |
| 3243 | { |
| 3244 | /* |
| 3245 | Visible pixel range: center. |
| 3246 | */ |
cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 3247 | window_center=StringToLong((char *) data); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3248 | break; |
| 3249 | } |
| 3250 | case 0x1051: |
| 3251 | { |
| 3252 | /* |
| 3253 | Visible pixel range: width. |
| 3254 | */ |
cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 3255 | window_width=StringToUnsignedLong((char *) data); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3256 | break; |
| 3257 | } |
| 3258 | case 0x1200: |
| 3259 | case 0x3006: |
| 3260 | { |
| 3261 | unsigned long |
| 3262 | colors; |
| 3263 | |
| 3264 | /* |
| 3265 | Populate image colormap. |
| 3266 | */ |
| 3267 | if (data == (unsigned char *) NULL) |
| 3268 | break; |
| 3269 | colors=(unsigned long) (length/bytes_per_pixel); |
| 3270 | datum=colors; |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3271 | graymap=(int *) AcquireQuantumMemory((size_t) colors, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3272 | sizeof(*graymap)); |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3273 | if (graymap == (int *) NULL) |
| 3274 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3275 | for (i=0; i < (long) colors; i++) |
| 3276 | if (bytes_per_pixel == 1) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3277 | graymap[i]=(int) data[i]; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3278 | else |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3279 | graymap[i]=(int) ((short *) data)[i]; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3280 | break; |
| 3281 | } |
| 3282 | case 0x1201: |
| 3283 | case 0x1202: |
| 3284 | case 0x1203: |
| 3285 | { |
| 3286 | MagickBooleanType |
| 3287 | status; |
| 3288 | |
| 3289 | unsigned short |
| 3290 | index; |
| 3291 | |
| 3292 | /* |
| 3293 | Initialize colormap. |
| 3294 | */ |
| 3295 | if (image->columns == 0) |
| 3296 | break; |
| 3297 | status=AcquireImageColormap(image,(unsigned long) (length+1)/2); |
| 3298 | if (status == MagickFalse) |
| 3299 | ThrowReaderException(ResourceLimitError,"UnableToCreateColormap"); |
| 3300 | p=data; |
| 3301 | for (i=0; i < (long) image->colors; i++) |
| 3302 | { |
| 3303 | index=(unsigned short) ((*p) | (*(p+1)) << 8); |
| 3304 | if (element == 0x1201) |
| 3305 | image->colormap[i].red=ScaleShortToQuantum(index); |
| 3306 | if (element == 0x1202) |
| 3307 | image->colormap[i].green=ScaleShortToQuantum(index); |
| 3308 | if (element == 0x1203) |
| 3309 | image->colormap[i].blue=ScaleShortToQuantum(index); |
| 3310 | p+=2; |
| 3311 | } |
| 3312 | break; |
| 3313 | } |
| 3314 | } |
| 3315 | break; |
| 3316 | } |
| 3317 | case 0x2050: |
| 3318 | { |
| 3319 | switch (element) |
| 3320 | { |
| 3321 | case 0x0020: |
| 3322 | { |
| 3323 | if ((data != (unsigned char *) NULL) && |
| 3324 | (strncmp((char*) data,"INVERSE", 7) == 0)) |
| 3325 | polarity=MagickTrue; |
| 3326 | break; |
| 3327 | } |
| 3328 | default: |
| 3329 | break; |
| 3330 | } |
| 3331 | break; |
| 3332 | } |
| 3333 | default: |
| 3334 | break; |
| 3335 | } |
| 3336 | if (data != (unsigned char *) NULL) |
| 3337 | { |
| 3338 | char |
| 3339 | *attribute; |
| 3340 | |
| 3341 | for (i=0; dicom_info[i].description != (char *) NULL; i++) |
| 3342 | if ((group == (long) dicom_info[i].group) && |
| 3343 | (element == (long) dicom_info[i].element)) |
| 3344 | break; |
| 3345 | attribute=AcquireString("dcm:"); |
| 3346 | (void) ConcatenateString(&attribute,dicom_info[i].description); |
| 3347 | for (i=0; i < (long) MagickMax(length,4); i++) |
| 3348 | if (isprint((int) data[i]) == MagickFalse) |
| 3349 | break; |
| 3350 | if ((i == (long) length) || (length > 4)) |
| 3351 | { |
| 3352 | (void) SubstituteString(&attribute," ",""); |
| 3353 | (void) SetImageProperty(image,attribute,(char *) data); |
| 3354 | } |
| 3355 | attribute=DestroyString(attribute); |
| 3356 | data=(unsigned char *) RelinquishMagickMemory(data); |
| 3357 | } |
| 3358 | if (image_info->verbose != MagickFalse) |
| 3359 | { |
| 3360 | if (data == (unsigned char *) NULL) |
| 3361 | (void) fprintf(stdout,"%lu\n",datum); |
| 3362 | else |
| 3363 | { |
| 3364 | /* |
| 3365 | Display group data. |
| 3366 | */ |
| 3367 | for (i=0; i < (long) MagickMax(length,4); i++) |
| 3368 | if (isprint((int) data[i]) == MagickFalse) |
| 3369 | break; |
| 3370 | if ((i != (long) length) && (length <= 4)) |
| 3371 | { |
| 3372 | long |
| 3373 | j; |
| 3374 | |
| 3375 | datum=0; |
| 3376 | for (j=(long) length-1; j >= 0; j--) |
| 3377 | datum=(256*datum+data[j]); |
| 3378 | (void) fprintf(stdout,"%lu",datum); |
| 3379 | } |
| 3380 | else |
| 3381 | for (i=0; i < (long) length; i++) |
| 3382 | if (isprint((int) data[i]) != MagickFalse) |
| 3383 | (void) fprintf(stdout,"%c",data[i]); |
| 3384 | else |
| 3385 | (void) fprintf(stdout,"%c",'.'); |
| 3386 | (void) fprintf(stdout,"\n"); |
| 3387 | } |
| 3388 | } |
| 3389 | if (EOFBlob(image) != MagickFalse) |
| 3390 | { |
| 3391 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 3392 | image->filename); |
| 3393 | break; |
| 3394 | } |
| 3395 | } |
| 3396 | if ((width == 0) || (height == 0)) |
| 3397 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 3398 | image->columns=(unsigned long) width; |
| 3399 | image->rows=(unsigned long) height; |
| 3400 | if (signed_data == 0xffff) |
| 3401 | signed_data=(unsigned long) (significant_bits == 16 ? 1 : 0); |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3402 | if ((image->compression == JPEGCompression) || |
| 3403 | (image->compression == JPEG2000Compression)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3404 | { |
| 3405 | Image |
| 3406 | *images; |
| 3407 | |
| 3408 | ImageInfo |
| 3409 | *read_info; |
| 3410 | |
| 3411 | int |
| 3412 | c; |
| 3413 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3414 | size_t |
| 3415 | length; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3416 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3417 | unsigned int |
| 3418 | tag; |
| 3419 | |
| 3420 | /* |
| 3421 | Read offset table. |
| 3422 | */ |
| 3423 | for (i=0; i < (long) stream_info->remaining; i++) |
| 3424 | (void) ReadBlobByte(image); |
| 3425 | tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image); |
| 3426 | length=(size_t) ReadBlobLSBLong(image); |
| 3427 | stream_info->offset_count=length >> 2; |
| 3428 | if (stream_info->offset_count != 0) |
| 3429 | { |
| 3430 | MagickOffsetType |
| 3431 | offset; |
| 3432 | |
| 3433 | stream_info->offsets=(ssize_t *) AcquireQuantumMemory( |
| 3434 | stream_info->offset_count,sizeof(*stream_info->offsets)); |
| 3435 | if (stream_info->offsets == (ssize_t *) NULL) |
| 3436 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | ded6c69 | 2009-12-06 20:27:19 +0000 | [diff] [blame] | 3437 | for (i=0; i < (long) stream_info->offset_count; i++) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3438 | stream_info->offsets[i]=(ssize_t) ReadBlobLSBLong(image); |
| 3439 | offset=TellBlob(image); |
cristy | ded6c69 | 2009-12-06 20:27:19 +0000 | [diff] [blame] | 3440 | for (i=0; i < (long) stream_info->offset_count; i++) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3441 | stream_info->offsets[i]+=offset; |
| 3442 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3443 | /* |
cristy | 20d23c5 | 2009-10-10 02:46:57 +0000 | [diff] [blame] | 3444 | Handle non-native image formats. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3445 | */ |
| 3446 | read_info=CloneImageInfo(image_info); |
| 3447 | SetImageInfoBlob(read_info,(void *) NULL,0); |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3448 | images=NewImageList(); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3449 | for (scene=0; scene < (long) number_scenes; scene++) |
| 3450 | { |
| 3451 | char |
| 3452 | filename[MaxTextExtent]; |
| 3453 | |
| 3454 | const char |
| 3455 | *property; |
| 3456 | |
| 3457 | FILE |
| 3458 | *file; |
| 3459 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3460 | Image |
| 3461 | *jpeg_image; |
| 3462 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3463 | int |
| 3464 | unique_file; |
| 3465 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3466 | unsigned int |
| 3467 | tag; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3468 | |
| 3469 | file=(FILE *) NULL; |
| 3470 | unique_file=AcquireUniqueFileResource(filename); |
| 3471 | if (unique_file != -1) |
| 3472 | file=fdopen(unique_file,"wb"); |
| 3473 | if ((unique_file == -1) || (file == (FILE *) NULL)) |
| 3474 | { |
| 3475 | ThrowFileException(exception,FileOpenError, |
| 3476 | "UnableToCreateTemporaryFile",filename); |
| 3477 | break; |
| 3478 | } |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3479 | tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image); |
| 3480 | length=(size_t) ReadBlobLSBLong(image); |
| 3481 | if (tag == 0xFFFEE0DD) |
| 3482 | break; /* sequence delimiter tag */ |
| 3483 | if (tag != 0xFFFEE000) |
| 3484 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 3485 | for ( ; length != 0; length--) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3486 | { |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3487 | c=ReadBlobByte(image); |
| 3488 | if (c == EOF) |
| 3489 | ThrowFileException(exception,CorruptImageError, |
| 3490 | "UnexpectedEndOfFile",image->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3491 | (void) fputc(c,file); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3492 | } |
| 3493 | (void) fclose(file); |
| 3494 | (void) FormatMagickString(read_info->filename,MaxTextExtent, |
| 3495 | "jpeg:%s",filename); |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3496 | if (image->compression == JPEG2000Compression) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3497 | (void) FormatMagickString(read_info->filename,MaxTextExtent, |
| 3498 | "jp2:%s",filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3499 | jpeg_image=ReadImage(read_info,exception); |
| 3500 | if (jpeg_image != (Image *) NULL) |
| 3501 | { |
| 3502 | ResetImagePropertyIterator(image); |
| 3503 | property=GetNextImageProperty(image); |
| 3504 | while (property != (const char *) NULL) |
| 3505 | { |
| 3506 | (void) SetImageProperty(jpeg_image,property, |
| 3507 | GetImageProperty(image,property)); |
| 3508 | property=GetNextImageProperty(image); |
| 3509 | } |
| 3510 | AppendImageToList(&images,jpeg_image); |
| 3511 | } |
| 3512 | (void) RelinquishUniqueFileResource(filename); |
| 3513 | } |
| 3514 | read_info=DestroyImageInfo(read_info); |
| 3515 | image=DestroyImage(image); |
| 3516 | return(GetFirstImageInList(images)); |
| 3517 | } |
| 3518 | if (image->depth != (1UL*MAGICKCORE_QUANTUM_DEPTH)) |
| 3519 | { |
| 3520 | QuantumAny |
| 3521 | range; |
| 3522 | |
| 3523 | size_t |
| 3524 | length; |
| 3525 | |
| 3526 | /* |
| 3527 | Compute pixel scaling table. |
| 3528 | */ |
| 3529 | length=(size_t) (GetQuantumRange(image->depth)+1); |
| 3530 | scale=(Quantum *) AcquireQuantumMemory(length,sizeof(*scale)); |
| 3531 | if (scale == (Quantum *) NULL) |
| 3532 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| 3533 | range=GetQuantumRange(image->depth); |
| 3534 | for (i=0; i < (long) (GetQuantumRange(image->depth)+1); i++) |
| 3535 | scale[i]=ScaleAnyToQuantum((unsigned long) i,range); |
| 3536 | } |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3537 | if (image->compression == RLECompression) |
| 3538 | { |
| 3539 | unsigned int |
| 3540 | tag; |
| 3541 | |
| 3542 | size_t |
| 3543 | length; |
| 3544 | |
| 3545 | /* |
| 3546 | Read RLE offset table. |
| 3547 | */ |
| 3548 | for (i=0; i < (long) stream_info->remaining; i++) |
| 3549 | (void) ReadBlobByte(image); |
| 3550 | tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image); |
| 3551 | length=(size_t) ReadBlobLSBLong(image); |
| 3552 | stream_info->offset_count=length >> 2; |
| 3553 | if (stream_info->offset_count != 0) |
| 3554 | { |
| 3555 | MagickOffsetType |
| 3556 | offset; |
| 3557 | |
| 3558 | stream_info->offsets=(ssize_t *) AcquireQuantumMemory( |
| 3559 | stream_info->offset_count,sizeof(*stream_info->offsets)); |
| 3560 | if (stream_info->offsets == (ssize_t *) NULL) |
| 3561 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | 1e3c3e3 | 2010-01-19 20:48:06 +0000 | [diff] [blame] | 3562 | for (i=0; i < (long) stream_info->offset_count; i++) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3563 | stream_info->offsets[i]=(ssize_t) ReadBlobLSBLong(image); |
| 3564 | offset=TellBlob(image); |
cristy | 1e3c3e3 | 2010-01-19 20:48:06 +0000 | [diff] [blame] | 3565 | for (i=0; i < (long) stream_info->offset_count; i++) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3566 | stream_info->offsets[i]+=offset; |
| 3567 | } |
| 3568 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3569 | for (scene=0; scene < (long) number_scenes; scene++) |
| 3570 | { |
| 3571 | if (image_info->ping != MagickFalse) |
| 3572 | break; |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3573 | if (image->compression == RLECompression) |
| 3574 | { |
| 3575 | unsigned int |
| 3576 | tag; |
| 3577 | |
| 3578 | /* |
| 3579 | Read RLE segment table. |
| 3580 | */ |
| 3581 | for (i=0; i < (long) stream_info->remaining; i++) |
| 3582 | (void) ReadBlobByte(image); |
| 3583 | tag=(ReadBlobLSBShort(image) << 16) | ReadBlobLSBShort(image); |
| 3584 | stream_info->remaining=(size_t) ReadBlobLSBLong(image); |
| 3585 | if ((tag != 0xFFFEE000) || (stream_info->remaining <= 64) || |
| 3586 | (EOFBlob(image) == MagickTrue)) |
| 3587 | ThrowReaderException(CorruptImageError,"ImproperImageHeader"); |
| 3588 | stream_info->count=0; |
| 3589 | stream_info->segment_count=ReadBlobLSBLong(image); |
| 3590 | for (i=0; i < 15; i++) |
| 3591 | stream_info->segments[i]=(ssize_t) ReadBlobLSBLong(image); |
| 3592 | stream_info->remaining-=64; |
| 3593 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3594 | image->columns=(unsigned long) width; |
| 3595 | image->rows=(unsigned long) height; |
| 3596 | if ((image->colormap == (PixelPacket *) NULL) && (samples_per_pixel == 1)) |
| 3597 | if (AcquireImageColormap(image,MaxColormapSize) == MagickFalse) |
| 3598 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| 3599 | if ((samples_per_pixel > 1) && (image->interlace == PlaneInterlace)) |
| 3600 | { |
| 3601 | /* |
| 3602 | Convert Planar RGB DCM Medical image to pixel packets. |
| 3603 | */ |
| 3604 | for (i=0; i < (long) samples_per_pixel; i++) |
| 3605 | { |
| 3606 | for (y=0; y < (long) image->rows; y++) |
| 3607 | { |
| 3608 | q=GetAuthenticPixels(image,0,y,image->columns,1,exception); |
| 3609 | if (q == (PixelPacket *) NULL) |
| 3610 | break; |
| 3611 | for (x=0; x < (long) image->columns; x++) |
| 3612 | { |
| 3613 | switch ((int) i) |
| 3614 | { |
| 3615 | case 0: |
| 3616 | { |
| 3617 | q->red=ScaleCharToQuantum((unsigned char) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3618 | ReadDCMByte(stream_info,image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3619 | break; |
| 3620 | } |
| 3621 | case 1: |
| 3622 | { |
| 3623 | q->green=ScaleCharToQuantum((unsigned char) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3624 | ReadDCMByte(stream_info,image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3625 | break; |
| 3626 | } |
| 3627 | case 2: |
| 3628 | { |
| 3629 | q->blue=ScaleCharToQuantum((unsigned char) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3630 | ReadDCMByte(stream_info,image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3631 | break; |
| 3632 | } |
| 3633 | case 3: |
| 3634 | { |
| 3635 | q->opacity=(Quantum) (QuantumRange-ScaleCharToQuantum( |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3636 | (unsigned char) ReadDCMByte(stream_info,image))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3637 | break; |
| 3638 | } |
| 3639 | default: |
| 3640 | break; |
| 3641 | } |
| 3642 | q++; |
| 3643 | } |
| 3644 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 3645 | break; |
| 3646 | if (image->previous == (Image *) NULL) |
| 3647 | { |
| 3648 | status=SetImageProgress(image,LoadImageTag,y,image->rows); |
| 3649 | if (status == MagickFalse) |
| 3650 | break; |
| 3651 | } |
| 3652 | } |
| 3653 | } |
| 3654 | } |
| 3655 | else |
| 3656 | { |
| 3657 | const char |
| 3658 | *option; |
| 3659 | |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3660 | int |
| 3661 | byte; |
| 3662 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3663 | LongPixelPacket |
| 3664 | pixel; |
| 3665 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3666 | /* |
| 3667 | Convert DCM Medical image to pixel packets. |
| 3668 | */ |
| 3669 | byte=0; |
| 3670 | i=0; |
| 3671 | if ((window_center != 0) && (window_width == 0)) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3672 | window_width=(unsigned long) window_center; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3673 | option=GetImageOption(image_info,"dcm:display-range"); |
| 3674 | if (option != (const char *) NULL) |
| 3675 | { |
| 3676 | if (LocaleCompare(option,"reset") == 0) |
| 3677 | window_width=0; |
| 3678 | } |
| 3679 | (void) ResetMagickMemory(&pixel,0,sizeof(pixel)); |
| 3680 | for (y=0; y < (long) image->rows; y++) |
| 3681 | { |
| 3682 | q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); |
| 3683 | if (q == (PixelPacket *) NULL) |
| 3684 | break; |
| 3685 | indexes=GetAuthenticIndexQueue(image); |
| 3686 | for (x=0; x < (long) image->columns; x++) |
| 3687 | { |
| 3688 | if (samples_per_pixel == 1) |
| 3689 | { |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3690 | int |
cristy | c5de699 | 2009-10-06 19:19:48 +0000 | [diff] [blame] | 3691 | pixel_value; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3692 | |
| 3693 | if (bytes_per_pixel == 1) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3694 | pixel_value=polarity != MagickFalse ? |
| 3695 | ((int) max_value-ReadDCMByte(stream_info,image)) : |
| 3696 | ReadDCMByte(stream_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3697 | else |
| 3698 | if ((bits_allocated != 12) || (significant_bits != 12)) |
| 3699 | { |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3700 | if (image->endian == MSBEndian) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3701 | pixel_value=(int) (polarity != MagickFalse ? (max_value- |
| 3702 | ReadDCMMSBShort(stream_info,image)) : |
| 3703 | ReadDCMMSBShort(stream_info,image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3704 | else |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3705 | pixel_value=(int) (polarity != MagickFalse ? (max_value- |
| 3706 | ReadDCMLSBShort(stream_info,image)) : |
| 3707 | ReadDCMLSBShort(stream_info,image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3708 | if (signed_data == 1) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3709 | pixel_value=((signed short) pixel_value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3710 | } |
| 3711 | else |
| 3712 | { |
| 3713 | if ((i & 0x01) != 0) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3714 | pixel_value=(ReadDCMByte(stream_info,image) << 8) | |
| 3715 | byte; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3716 | else |
| 3717 | { |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3718 | if (image->endian == MSBEndian) |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3719 | pixel_value=(int) ReadDCMMSBShort(stream_info, |
| 3720 | image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3721 | else |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3722 | pixel_value=(int) ReadDCMLSBShort(stream_info, |
| 3723 | image); |
| 3724 | byte=(int) (pixel_value & 0x0f); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3725 | pixel_value>>=4; |
| 3726 | } |
| 3727 | i++; |
| 3728 | } |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3729 | index=pixel_value; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3730 | if (window_width == 0) |
cristy | c5de699 | 2009-10-06 19:19:48 +0000 | [diff] [blame] | 3731 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3732 | if (signed_data == 1) |
cristy | c5de699 | 2009-10-06 19:19:48 +0000 | [diff] [blame] | 3733 | index=pixel_value-32767; |
| 3734 | } |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3735 | else |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3736 | { |
| 3737 | long |
| 3738 | window_max, |
| 3739 | window_min; |
| 3740 | |
cristy | 06609ee | 2010-03-17 20:21:27 +0000 | [diff] [blame^] | 3741 | window_min=(long) ceil(window_center-(window_width-1)/2.0- |
| 3742 | 0.5); |
| 3743 | window_max=(long) floor(window_center+(window_width-1)/2.0+ |
| 3744 | 0.5); |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3745 | if ((long) pixel_value <= window_min) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3746 | index=0; |
| 3747 | else |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3748 | if ((long) pixel_value > window_max) |
| 3749 | index=(int) max_value; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3750 | else |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3751 | index=(int) (max_value*(((pixel_value-window_center- |
| 3752 | 0.5)/(window_width-1))+0.5)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3753 | } |
| 3754 | index&=mask; |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3755 | if (graymap != (int *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3756 | index=graymap[index]; |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3757 | if ((scale != (Quantum *) NULL) && (index <= (int) max_value)) |
| 3758 | index=(int) scale[index]; |
| 3759 | index=(int) ConstrainColormapIndex(image,(unsigned long) index); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3760 | indexes[x]=(IndexPacket) index; |
| 3761 | pixel.red=1UL*image->colormap[index].red; |
| 3762 | pixel.green=1UL*image->colormap[index].green; |
| 3763 | pixel.blue=1UL*image->colormap[index].blue; |
| 3764 | } |
| 3765 | else |
| 3766 | { |
| 3767 | if (bytes_per_pixel == 1) |
| 3768 | { |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3769 | pixel.red=(unsigned long) ReadDCMByte(stream_info,image); |
| 3770 | pixel.green=(unsigned long) ReadDCMByte(stream_info,image); |
| 3771 | pixel.blue=(unsigned long) ReadDCMByte(stream_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3772 | } |
| 3773 | else |
| 3774 | { |
cristy | 2cc3984 | 2009-10-10 20:04:02 +0000 | [diff] [blame] | 3775 | if (image->endian == MSBEndian) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3776 | { |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3777 | pixel.red=ReadDCMMSBShort(stream_info,image); |
| 3778 | pixel.green=ReadDCMMSBShort(stream_info,image); |
| 3779 | pixel.blue=ReadDCMMSBShort(stream_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3780 | } |
| 3781 | else |
| 3782 | { |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3783 | pixel.red=ReadDCMLSBShort(stream_info,image); |
| 3784 | pixel.green=ReadDCMLSBShort(stream_info,image); |
| 3785 | pixel.blue=ReadDCMLSBShort(stream_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3786 | } |
| 3787 | } |
| 3788 | pixel.red&=mask; |
| 3789 | pixel.green&=mask; |
| 3790 | pixel.blue&=mask; |
| 3791 | if (scale != (Quantum *) NULL) |
| 3792 | { |
| 3793 | pixel.red=scale[pixel.red]; |
| 3794 | pixel.green=scale[pixel.green]; |
| 3795 | pixel.blue=scale[pixel.blue]; |
| 3796 | } |
| 3797 | } |
| 3798 | q->red=(Quantum) pixel.red; |
| 3799 | q->green=(Quantum) pixel.green; |
| 3800 | q->blue=(Quantum) pixel.blue; |
| 3801 | q++; |
| 3802 | } |
| 3803 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 3804 | break; |
| 3805 | if (image->previous == (Image *) NULL) |
| 3806 | { |
| 3807 | status=SetImageProgress(image,LoadImageTag,y,image->rows); |
| 3808 | if (status == MagickFalse) |
| 3809 | break; |
| 3810 | } |
| 3811 | } |
| 3812 | } |
cristy | 8f85a40 | 2009-10-10 14:14:40 +0000 | [diff] [blame] | 3813 | if (EOFBlob(image) != MagickFalse) |
| 3814 | { |
| 3815 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 3816 | image->filename); |
| 3817 | break; |
| 3818 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3819 | /* |
| 3820 | Proceed to next image. |
| 3821 | */ |
| 3822 | if (image_info->number_scenes != 0) |
| 3823 | if (image->scene >= (image_info->scene+image_info->number_scenes-1)) |
| 3824 | break; |
| 3825 | if (scene < (long) (number_scenes-1)) |
| 3826 | { |
| 3827 | /* |
| 3828 | Allocate next image structure. |
| 3829 | */ |
| 3830 | AcquireNextImage(image_info,image); |
| 3831 | if (GetNextImageInList(image) == (Image *) NULL) |
| 3832 | { |
| 3833 | image=DestroyImageList(image); |
| 3834 | return((Image *) NULL); |
| 3835 | } |
| 3836 | image=SyncNextImageInList(image); |
| 3837 | status=SetImageProgress(image,LoadImagesTag,TellBlob(image), |
| 3838 | GetBlobSize(image)); |
| 3839 | if (status == MagickFalse) |
| 3840 | break; |
| 3841 | } |
| 3842 | } |
| 3843 | /* |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3844 | Free resources. |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3845 | */ |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3846 | if (stream_info->offsets != (ssize_t *) NULL) |
| 3847 | stream_info->offsets=(ssize_t *) |
| 3848 | RelinquishMagickMemory(stream_info->offsets); |
| 3849 | stream_info=(DCMStreamInfo *) RelinquishMagickMemory(stream_info); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3850 | if (scale != (Quantum *) NULL) |
| 3851 | scale=(Quantum *) RelinquishMagickMemory(scale); |
cristy | bc98a28 | 2009-10-09 17:52:22 +0000 | [diff] [blame] | 3852 | if (graymap != (int *) NULL) |
| 3853 | graymap=(int *) RelinquishMagickMemory(graymap); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3854 | (void) CloseBlob(image); |
| 3855 | return(GetFirstImageInList(image)); |
| 3856 | } |
| 3857 | |
| 3858 | /* |
| 3859 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3860 | % % |
| 3861 | % % |
| 3862 | % % |
| 3863 | % R e g i s t e r D C M I m a g e % |
| 3864 | % % |
| 3865 | % % |
| 3866 | % % |
| 3867 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3868 | % |
| 3869 | % RegisterDCMImage() adds attributes for the DCM image format to |
| 3870 | % the list of supported formats. The attributes include the image format |
| 3871 | % tag, a method to read and/or write the format, whether the format |
| 3872 | % supports the saving of more than one frame to the same file or blob, |
| 3873 | % whether the format supports native in-memory I/O, and a brief |
| 3874 | % description of the format. |
| 3875 | % |
| 3876 | % The format of the RegisterDCMImage method is: |
| 3877 | % |
| 3878 | % unsigned long RegisterDCMImage(void) |
| 3879 | % |
| 3880 | */ |
| 3881 | ModuleExport unsigned long RegisterDCMImage(void) |
| 3882 | { |
| 3883 | MagickInfo |
| 3884 | *entry; |
| 3885 | |
| 3886 | static const char |
| 3887 | *DCMNote= |
| 3888 | { |
| 3889 | "DICOM is used by the medical community for images like X-rays. The\n" |
| 3890 | "specification, \"Digital Imaging and Communications in Medicine\n" |
| 3891 | "(DICOM)\", is available at http://medical.nema.org/. In particular,\n" |
| 3892 | "see part 5 which describes the image encoding (RLE, JPEG, JPEG-LS),\n" |
| 3893 | "and supplement 61 which adds JPEG-2000 encoding." |
| 3894 | }; |
| 3895 | |
| 3896 | entry=SetMagickInfo("DCM"); |
| 3897 | entry->decoder=(DecodeImageHandler *) ReadDCMImage; |
| 3898 | entry->magick=(IsImageFormatHandler *) IsDCM; |
| 3899 | entry->adjoin=MagickFalse; |
| 3900 | entry->seekable_stream=MagickTrue; |
| 3901 | entry->description=ConstantString( |
| 3902 | "Digital Imaging and Communications in Medicine image"); |
| 3903 | entry->note=ConstantString(DCMNote); |
| 3904 | entry->module=ConstantString("DCM"); |
| 3905 | (void) RegisterMagickInfo(entry); |
| 3906 | return(MagickImageCoderSignature); |
| 3907 | } |
| 3908 | |
| 3909 | /* |
| 3910 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3911 | % % |
| 3912 | % % |
| 3913 | % % |
| 3914 | % U n r e g i s t e r D C M I m a g e % |
| 3915 | % % |
| 3916 | % % |
| 3917 | % % |
| 3918 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3919 | % |
| 3920 | % UnregisterDCMImage() removes format registrations made by the |
| 3921 | % DCM module from the list of supported formats. |
| 3922 | % |
| 3923 | % The format of the UnregisterDCMImage method is: |
| 3924 | % |
| 3925 | % UnregisterDCMImage(void) |
| 3926 | % |
| 3927 | */ |
| 3928 | ModuleExport void UnregisterDCMImage(void) |
| 3929 | { |
| 3930 | (void) UnregisterMagickInfo("DCM"); |
| 3931 | } |