/usr/include/vtkDICOMMetaData.h is in libvtk-dicom-dev 0.7.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | /*=========================================================================
Program: DICOM for VTK
Copyright (c) 2012-2015 David Gobbi
All rights reserved.
See Copyright.txt or http://dgobbi.github.io/bsd3.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef vtkDICOMMetaData_h
#define vtkDICOMMetaData_h
#include <vtkDataObject.h>
#include <vtkStdString.h> // For std::string
#include "vtkDICOMModule.h" // For export macro
#include "vtkDICOMDataElement.h" // For method parameter
#include "vtkDICOMDictEntry.h" // For method parameter
class vtkIntArray;
class vtkDICOMTagPath;
//! A container class for DICOM metadata.
/*!
* The vtkDICOMMetaData object stores DICOM metadata in a hash table
* for efficient access. One vtkDICOMMetaData object can store the
* metadata for a series of DICOM images.
*/
class VTKDICOM_EXPORT vtkDICOMMetaData : public vtkDataObject
{
public:
//! Create a new vtkDICOMMetaData instance.
static vtkDICOMMetaData *New();
//! VTK dynamic type information macro.
vtkTypeMacro(vtkDICOMMetaData, vtkDataObject);
//! Print a summary of the contents of this object.
void PrintSelf(ostream& os, vtkIndent indent);
//@{
//! Get the number of instances (i.e. files).
/*!
* We want to track the metadata from all of the files that
* make up the image volume that we have loaded into VTK.
* This method gives the number of files used to construct
* this meta data. All the files should be from the same
* series.
*/
int GetNumberOfInstances() { return this->NumberOfInstances; }
void SetNumberOfInstances(int n);
//@}
//@{
//! Remove all data elements.
void Clear();
//! Remove all data elements and initialize all members.
void Initialize();
//@}
//@{
//! Get the number of data elements that are present.
int GetNumberOfDataElements() {
return this->NumberOfDataElements; }
//! Get an iterator for the list of data elements.
vtkDICOMDataElementIterator Begin() {
return this->Head.Next; }
//! Get an end iterator for the list of data elements.
vtkDICOMDataElementIterator End() {
return &this->Tail; }
//@}
//@{
//! Get the iterator for a specific data element.
/*!
* If the element was not found, then End() will be returned.
*/
vtkDICOMDataElementIterator Find(vtkDICOMTag tag) {
vtkDICOMDataElement *e = this->FindDataElement(tag);
return (e != 0 ? e : &this->Tail); }
//@}
//@{
//! Check whether an attribute is present in the metadata.
bool HasAttribute(vtkDICOMTag tag);
//! Erase an attribute.
void RemoveAttribute(vtkDICOMTag tag);
//@}
//@{
//! Get an attribute value.
/*!
* The tag will usually be specified in one of these two ways:
* GetAttributeValue(vtkDICOMTag(0x0008,0x1030)) or, using the
* dictionary enum type, GetAttributeValue(DC::StudyDescription).
* If the attribute is not present, then the returned value will
* be invalid, i.e. v.IsValid() will be false.
*/
const vtkDICOMValue &GetAttributeValue(vtkDICOMTag tag);
const vtkDICOMValue &GetAttributeValue(const vtkDICOMTagPath &p);
//@}
//@{
//! Get an attribute value for the specified file index.
/*!
* If this meta data object is used to hold the meta data for
* multiple image instances, then use this method to get an
* attribute value for a specific instance. If the attribute
* is not present, the value will be invalid, i.e. v.IsValid()
* will be false.
*/
const vtkDICOMValue &GetAttributeValue(int idx, vtkDICOMTag tag);
const vtkDICOMValue &GetAttributeValue(int idx, const vtkDICOMTagPath &p);
//@}
//@{
//! Get an attribute value for the specified file and frame index.
/*!
* In order to get the file and frame index for a particular slice
* of a volume, use the GetFileIndex() and GetFrameIndex() methods.
* For enhanced multi-frame DICOM files, much of the meta data is
* stored per-frame. This method will search for the attribute
* in the PerFrameFunctionGroupSequence first, then in the
* SharedFunctionalGroupsSequence, and finally in the root.
* It can be used on either multi-frame or single-frame files.
* The frame index is counted from zero to NumberOfFrames-1.
*/
const vtkDICOMValue &GetAttributeValue(int idx, int frame, vtkDICOMTag tag);
const vtkDICOMValue &GetAttributeValue(
int idx, int frame, const vtkDICOMTagPath &p);
//@}
//@{
//! Get the file index for the given image slice and component.
/*!
* This takes into account the way the files were sorted to create
* the volume (as given by the FileIndexArray). For multi-component
* images, supply both the component of interest, and the total number
* of components. The return value will be -1 if an index is out of
* range.
*/
int GetFileIndex(int sliceIdx, int compIdx, int numComps);
int GetFileIndex(int sliceIdx);
//@}
//@{
//! Get the frame index for the given image slice and component.
/*!
* This takes into account the way the frames were sorted to create
* the volume (as given by the FileIndexArray). For multi-component
* images, supply both the component of interest, and the total number
* of components. The return value will be -1 if an index is out of
* range.
*/
int GetFrameIndex(int sliceIdx, int compIdx, int numComps);
int GetFrameIndex(int sliceIdx);
//@}
//@{
//! Set an attribute value for the image at file index "idx".
/*!
* Except for the method that takes a vtkDICOMValue, these methods
* will use the dictionary to find the VR for the attribute, and will
* attempt to convert the input data to the correct VR. Strings and
* doubles will be converted to integer values where necessary, and
* numeric values will be converted to strings where necessary.
* Note that if you specify a string value, it must either be an
* ASCII string, or it must be encoded in the SpecificCharacterSet
* for this data set.
*/
void SetAttributeValue(int idx, vtkDICOMTag tag, const vtkDICOMValue& v);
void SetAttributeValue(int idx, vtkDICOMTag tag, double v);
void SetAttributeValue(int idx, vtkDICOMTag tag, const std::string& v);
//@}
//@{
//! Set the same attribute value for all images.
void SetAttributeValue(vtkDICOMTag tag, const vtkDICOMValue& v);
void SetAttributeValue(vtkDICOMTag tag, double v);
void SetAttributeValue(vtkDICOMTag tag, const std::string& v);
//@}
//@{
//! Set the attribute at the specified path.
/*!
* The data element is inserted at the tail of the given path. If the
* path lies within a sequence that does not yet exist, then the sequence
* will be created. If an item index in the path points to an item that
* does not exist, then that item will be created.
*/
void SetAttributeValue(
int idx, const vtkDICOMTagPath& tag, const vtkDICOMValue& v);
void SetAttributeValue(
int idx, const vtkDICOMTagPath& tag, double v);
void SetAttributeValue(
int idx, const vtkDICOMTagPath& tag, const std::string& v);
//@}
//@{
//! Set the attribute value along this path for all images.
void SetAttributeValue(const vtkDICOMTagPath& tag, const vtkDICOMValue& v);
void SetAttributeValue(const vtkDICOMTagPath& tag, double v);
void SetAttributeValue(const vtkDICOMTagPath& tag, const std::string& v);
//@}
//@{
//! Resolve a private tag, or return (ffff,ffff) if not resolved.
/*!
* Private data elements are mobile, which means that different data
* sets might store them at different locations. Given a private
* data element which has a tag of (gggg,xxee) according to its
* dictionary, the first two element digits "xx" can change from one
* data set to the next, and the data set must have a "Creator Element"
* at (gggg,00xx) to allow the digits of "xx" to be resolved. Please
* read DICOM Part 5 Section 7.8 for additional information.
*/
vtkDICOMTag ResolvePrivateTag(vtkDICOMTag ptag, const std::string& creator);
//! Resolve a private tag, and add the creator to the data set.
/*!
* This method works like ResolvePrivateTag, except that if the creator
* is not found in the data set, it will be added. It should be used to
* resolve private tags that you plan to write to the data set. The
* returned tag will be (ffff,ffff) if there are no empty slots available
* for the creator. Every private group has 240 available slots.
*/
vtkDICOMTag ResolvePrivateTagForWriting(
vtkDICOMTag ptag, const std::string& creator);
//@}
//@{
//! Look up a tag in the DICOM dictionary.
/*!
* Unlike the method in vtkDICOMDictionary, this method can identify
* the implementor of a private tag and look it up in the implementor's
* dictionary.
*/
vtkDICOMDictEntry FindDictEntry(vtkDICOMTag tag);
//! Use the dictionary to get the VR, return UN if not found.
vtkDICOMVR FindDictVR(int idx, vtkDICOMTag tag);
//@}
//@{
//! Create a value from text in a specific character set.
vtkDICOMValue MakeValueWithSpecificCharacterSet(
vtkDICOMVR vr, const std::string& v);
//@}
//@{
//! Set the array to convert slice, component indices to file index.
void SetFileIndexArray(vtkIntArray *fileArray);
vtkIntArray *GetFileIndexArray() { return this->FileIndexArray; }
//@}
//@{
//! Set the array to convert slice, component indices to frame index.
void SetFrameIndexArray(vtkIntArray *frameArray);
vtkIntArray *GetFrameIndexArray() { return this->FrameIndexArray; }
//@}
//@{
//! Copy all the attributes from another MetaData object.
/*!
* Copy attributes from the source meta data object into this one.
* If the source has the same NumberOfInstances as this, then the
* attributes are copied on an instance-by-instance basis. Otherwise,
* attributes are only copied from the source if they have the same
* value for all instances.
*/
void CopyAttributes(vtkDICOMMetaData *source);
//@}
//@{
//! DataObject interface function.
void ShallowCopy(vtkDataObject *source);
void DeepCopy(vtkDataObject *source);
//@}
protected:
vtkDICOMMetaData();
~vtkDICOMMetaData();
//! Find a tag, value pair.
vtkDICOMDataElement *FindDataElement(vtkDICOMTag tag);
//! Find a tag, value pair or insert a pair if not found.
vtkDICOMDataElement *FindDataElementOrInsert(vtkDICOMTag tag);
//! Find or create the sequence at the head of the tagpath.
int FindItemsOrInsert(
int idx, bool useidx, const vtkDICOMTagPath& tagpath,
vtkDICOMItem *items[]);
//! Find a child item for a tag path, or insert if not there.
vtkDICOMItem *FindItemOrInsert(int idx, const vtkDICOMTagPath& tagpath);
//! Find the attribute value for the specified image index.
const vtkDICOMValue *FindAttributeValue(int idx, vtkDICOMTag tag);
//! Find the attribute value for the specified image index.
const vtkDICOMValue *FindAttributeValue(
int idx, const vtkDICOMTagPath& tagpath);
private:
//! The number of DICOM files.
int NumberOfInstances;
//! The lookup table for the metadata.
vtkDICOMDataElement **Table;
//! Links to the first data element.
vtkDICOMDataElement Head;
//! Links to the last data element.
vtkDICOMDataElement Tail;
//! The number of data elements.
int NumberOfDataElements;
//! An array to map slices and components to files.
vtkIntArray *FileIndexArray;
//! An array to map slices and components to frames.
vtkIntArray *FrameIndexArray;
vtkDICOMMetaData(const vtkDICOMMetaData&); // Not implemented.
void operator=(const vtkDICOMMetaData&); // Not implemented.
};
#endif /* vtkDICOMMetaData_h */
|