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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkArchetypeSeriesFileNames.h,v $
Language: C++
Date: $Date: 2007-03-22 14:28:47 $
Version: $Revision: 1.5 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 notices for more information.
=========================================================================*/
#ifndef __itkArchetypeSeriesFileNames_h
#define __itkArchetypeSeriesFileNames_h
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#endif
#include "itkObject.h"
#include "itkObjectFactory.h"
#include <vector>
#include <string>
namespace itk
{
/** \class ArchetypeSeriesFileNames
* \brief Generate an ordered sequence of filenames.
*
* This class generates an ordered sequence of files based on an
* archetypical filename. From the archetypical filename, a set of
* regular expressions is created to group filenames based on numeric
* substrings. There can be multiple numeric substrings in the
* archetype. When this occurs, ArchetypeSeriesFileNames can not
* determine which numeric substring refers to the "image number" and
* which numeric substring refers to the "series" or "study". By
* default, the ArchetypeSeriesFileNames assumes the rightmost numeric
* substring refers to the image number, and this is the group of
* filenames returned by default. However, the other groupings of
* filenames can also be queried by passing in a group number to the
* GetFileNames() method. Groups are numbered by the numeric
* substrings from right to left in the archetype.
*
* For example, if a directory contains the files
*
* foo_5_1.png
* foo_5_2.png
* foo_5_3.png
* foo_6_1.png
* foo_6_2.png
* foo_6_3.png
*
* and specifying an archetypical file foo_5_1.png, the filename list
* will contain
*
* foo_5_1.png
* foo_5_2.png
* foo_5_3.png
*
* \ingroup IOFilters
*
*/
class ITK_EXPORT ArchetypeSeriesFileNames : public Object
{
public:
/** Standard class typedefs. */
typedef ArchetypeSeriesFileNames Self;
typedef Object Superclass;
typedef SmartPointer<Self> Pointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(ArchetypeSeriesFileNames, Object);
/* -------- Define the API for ArchetypeSeriesFileNames ----------- */
// The archetypical filename from which to generate the regular
// expressions
void SetArchetype(const std::string &archetype);
itkGetStringMacro(Archetype);
typedef size_t VectorSizeType;
/** Get the number of groupings that match the Archetype */
VectorSizeType GetNumberOfGroupings();
/** Helper types for managing the groups of filenames and their sizes */
typedef std::vector < int > IntVectorType;
typedef std::vector < std::string > StringVectorType;
/** Returns a vector containing the series' file names. The file
* names are ordered by Index. Defaults to returning the filenames
* to the rightmost grouping. */
const StringVectorType &GetFileNames ( VectorSizeType group = 0);
protected:
ArchetypeSeriesFileNames();
~ArchetypeSeriesFileNames() {};
void PrintSelf(std::ostream& os, Indent indent) const;
/** Method that actually does the archetype matching/grouping */
void Scan();
private:
ArchetypeSeriesFileNames(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** A string for formatting the names of files in the series. */
std::string m_Archetype;
std::vector< StringVectorType > m_Groupings;
StringVectorType m_FileNames; // ivar for returning by reference
TimeStamp m_ArchetypeMTime;
TimeStamp m_ScanTime;
};
} //namespace ITK
#endif // __itkArchetypeSeriesFileNames_h
|