/usr/include/vtkDICOMDirectory.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 | /*=========================================================================
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 vtkDICOMDirectory_h
#define vtkDICOMDirectory_h
#include <vtkAlgorithm.h>
#include "vtkDICOMModule.h" // For export macro
class vtkStringArray;
class vtkIntArray;
class vtkDICOMMetaData;
class vtkDICOMItem;
//! Get information about all DICOM files within a directory.
/*!
* Given a directory, search for a DICOMDIR file, and if no DICOMDIR is
* found, directly search for DICOM files within the directory. Provide
* a list of DICOM file names as output, sorted by patient, study, series,
* and image.
*/
class VTKDICOM_EXPORT vtkDICOMDirectory : public vtkAlgorithm
{
public:
vtkTypeMacro(vtkDICOMDirectory,vtkAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkDICOMDirectory *New();
//! Levels within the DICOM information model.
enum {
PATIENT, STUDY, SERIES, IMAGE, FRAME
};
//@{
//! Set the input directory.
/*!
* Set the input directory. If it has a DICOMDIR file, then that
* file will be scanned to get info about the directory. Otherwise,
* the directory will be scanned for DICOM files. The depth of the
* scan (how many subdirectories deep) can be controlled with the
* SetScanDepth() method.
*/
void SetDirectoryName(const char *name);
const char *GetDirectoryName() { return this->DirectoryName; }
//@}
//@{
//! Set a list of filenames (or files and directories) to read.
/*!
* This can be used as alternative to setting a single input directory.
*/
void SetInputFileNames(vtkStringArray *sa);
vtkStringArray *GetInputFileNames() { return this->InputFileNames; }
//@}
//@{
//! Set a pattern to match for the filenames.
/*!
* For example "*.dcm" will match files ending with ".dcm". The two
* wildcards that are supported are "*" and "?".
*/
void SetFilePattern(const char *pattern);
const char *GetFilePattern() { return this->FilePattern; }
//@}
//@{
//! Set the scan depth to use when no DICOMDIR is found.
/*!
* The default scan depth is 1, which scans only the given directory
* and no subdirectories. A scan depth of zero means that the directory
* will not be scanned unless it contains a DICOMDIR file.
*/
vtkSetMacro(ScanDepth, int);
int GetScanDepth() { return this->ScanDepth; }
//@}
//@{
//! Specify a find query.
void SetFindQuery(const vtkDICOMItem& query);
//@}
//@{
//! Specify the find level.
/*!
* If this is Series, then the whole series will be found if a single
* file in the series matches the query. Only IMAGE and SERIES are
* allowed. Note that IMAGE is inclusive of any single file, whether
* or not the contained data is an image.
*/
void SetFindLevel(int level);
void SetFindLevelToImage() { this->SetFindLevel(IMAGE); }
void SetFindLevelToSeries() { this->SetFindLevel(SERIES); }
int GetFindLevel() { return this->FindLevel; }
//@}
//@{
//! Update the information about the files.
/*!
* This method causes the directory to be read. It must be called before
* any of the Get methods.
*/
virtual void Update() { this->Update(0); }
virtual void Update(int);
//@}
//@{
//! Get the total number of series that were found.
int GetNumberOfSeries();
//! Get the directory attributes for a series.
const vtkDICOMItem& GetSeriesRecord(int series);
//! Get the number of studies that were found.
int GetNumberOfStudies();
//! Get the directory attributes for a study.
const vtkDICOMItem& GetStudyRecord(int study);
//! Get the patient-related attributes for a specific study.
/*!
* This returns a patient record, the same as GetPatientRecord(),
* except that it returns the patient information as recorded
* at the time of the study.
*/
const vtkDICOMItem& GetPatientRecordForStudy(int study);
//! Get the number of patients that were found.
int GetNumberOfPatients();
//! Get the directory attributes for a patient.
const vtkDICOMItem& GetPatientRecord(int patient);
//! Get the studies for this patient.
vtkIntArray *GetStudiesForPatient(int patient);
//@}
//@{
//! Get the first series in a particular study.
int GetFirstSeriesForStudy(int study);
//! Get the last series in a particular study.
int GetLastSeriesForStudy(int study);
//! Get the file names for a specific series.
vtkStringArray *GetFileNamesForSeries(int i);
//! Get the meta data for a specific series.
/*!
* This provides a subset of the meta data of each file in the series.
* To be specific, it contains all the information from the patient,
* study, and, at the very minimum, the SOPClassUID, SOPInstanceUID,
* and InstanceNumber for each file.
*/
vtkDICOMMetaData *GetMetaDataForSeries(int i);
//@}
//@{
//! Get the file set ID. This will be NULL unless a DICOMDIR was found.
const char *GetFileSetID() { return this->FileSetID; }
//@}
//@{
//! Get the filename associated with the error code.
const char *GetInternalFileName() { return this->InternalFileName; }
//@}
//@{
//! If this is On, files with no pixel data will be skipped.
/*!
* This is On by default. Some files, such as dicom directory files,
* have metadata but have no images. Usually we want to skip these.
*/
vtkSetMacro(RequirePixelData, int);
vtkBooleanMacro(RequirePixelData, int);
int GetRequirePixelData() { return this->RequirePixelData; }
//@}
//@{
//! If On (the default), symbolic links will not be followed.
vtkSetMacro(FollowSymlinks, int);
vtkBooleanMacro(FollowSymlinks, int);
int GetFollowSymlinks() { return this->FollowSymlinks; }
//@}
protected:
vtkDICOMDirectory();
~vtkDICOMDirectory();
const char *DirectoryName;
vtkStringArray *InputFileNames;
const char *FilePattern;
int RequirePixelData;
int FollowSymlinks;
int ScanDepth;
vtkTimeStamp UpdateTime;
char *InternalFileName;
//! Fill the output filename array.
virtual void Execute();
//! Fill image info from image metadata.
virtual void FillImageRecord(vtkDICOMItem *item, vtkDICOMMetaData *meta);
//! Fill series info from image metadata.
virtual void FillSeriesRecord(vtkDICOMItem *item, vtkDICOMMetaData *meta);
//! Fill study info from image metadata.
virtual void FillStudyRecord(vtkDICOMItem *item, vtkDICOMMetaData *meta);
//! Fill patient info from image metadata.
virtual void FillPatientRecord(vtkDICOMItem *item, vtkDICOMMetaData *meta);
//! Sort the input string array
virtual void SortFiles(vtkStringArray *input);
//! Add a sorted series to output.
/*!
* This method is called from SortFiles to provide the files
* that make up one series. The study that the files belong
* to must also be provided, as a number that starts at zero
* and monotonically increases.
*/
void AddSeriesFileNames(
int patient, int study, vtkStringArray *files,
const vtkDICOMItem& patientRecord,
const vtkDICOMItem& studyRecord,
const vtkDICOMItem& seriesRecord,
const vtkDICOMItem *imageRecords[]);
//! Add files only if they match the query.
void AddSeriesWithQuery(
int patient, int study, vtkStringArray *files,
const vtkDICOMItem& patientRecord,
const vtkDICOMItem& studyRecord,
const vtkDICOMItem& seriesRecord,
const vtkDICOMItem *imageRecords[]);
//! Returns false if the record doesn't match the query.
/*!
* Matching values are placed into the result parameter.
*/
bool MatchesQuery(
const vtkDICOMItem& record, vtkDICOMItem& result);
//! Perform query on image record, given results from previous levels.
/*!
* This method requires that MatchesQuery() was already called on the
* patient, study, and series records. It has three possible return
* values. If all remaining query attributes were matched by the image
* record, then 0 is returned. If any of the remaining query attributes
* mis-matches with the image record, then -1 is returned. If the query
* contains tags that weren't in the patient, study, series, or image
* record, then 1 is returned to indicate that the match is inconclusive.
*/
int MatchesImageQuery(
const vtkDICOMItem& record, const vtkDICOMItem& result);
//! Convert parser errors into sorter errors.
void RelayError(vtkObject *o, unsigned long e, void *data);
//! Set the name of the file currently being operated on.
void SetInternalFileName(const char *fname);
//! Set the error code.
void SetErrorCode(unsigned long e) { this->ErrorCode = e; }
//! Add all of the series listed in a DICOMDIR file.
/*!
* The provided directory should be the directory that contains
* the DICOMDIR file, rather than the DICOMDIR file itself. The
* DICOMDIR file should be parsed before this method is called.
*/
void ProcessDirectoryFile(const char *dirname, vtkDICOMMetaData *meta);
//! Process a directory, and subdirs to the specified depth.
void ProcessDirectory(
const char *dirname, int depth, vtkStringArray *files);
//! Process an OsiriX sqlite database file.
void ProcessOsirixDatabase(const char *fname);
//! Copy attributes into a meta data object.
void CopyRecord(
vtkDICOMMetaData *meta, const vtkDICOMItem *item, int instance);
private:
vtkDICOMDirectory(const vtkDICOMDirectory&); // Not implemented.
void operator=(const vtkDICOMDirectory&); // Not implemented.
struct SeriesItem;
struct StudyItem;
struct PatientItem;
class SeriesVector;
class StudyVector;
class PatientVector;
struct FileInfo;
struct SeriesInfo;
class SeriesInfoList;
class VisitedVector;
vtkDICOMItem *Query;
int FindLevel;
SeriesVector *Series;
StudyVector *Studies;
PatientVector *Patients;
VisitedVector *Visited;
char *FileSetID;
bool UsingOsirixDatabase;
//! Compare FileInfo entries by instance number
static bool CompareInstance(const FileInfo &fi1, const FileInfo &fi2);
};
#endif
|