/usr/include/ITK-4.9/itkFileListVideoIO.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkFileListVideoIO_h
#define itkFileListVideoIO_h
#include "itkVideoIOBase.h"
#include "ITKVideoIOExport.h"
namespace itk
{
/** \class FileListVideoIO
*
* \brief VideoIO object for reading and writing videos as a sequence of frame
* files
*
* This VideoIO treats a sequential list of file names as the frames of a
* video. The frames must be specified in a comma-separated list. Also, the
* SplitFileNames(...) static method is made public in order to allow the
* splitting functionality to be accessed publicly.
*
* \ingroup ITKVideoIO
*
*/
class ITKVideoIO_EXPORT FileListVideoIO : public VideoIOBase
{
public:
/** Standard class typedefs. */
typedef FileListVideoIO Self;
typedef VideoIOBase Superclass;
typedef SmartPointer< Self > Pointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(FileListVideoIO, Superclass);
/** Close the reader and writer and reset members */
virtual void FinishReadingOrWriting() ITK_OVERRIDE;
/** Split up the input file names -- This is public so that places where
* FileListVideoIO is used can access the individual file names. This is
* mostly an issue for testing. */
static std::vector<std::string> SplitFileNames(const std::string& fileList);
/*-------- This part of the interface deals with reading data. ------ */
/** Set to reading from file */
virtual void SetReadFromFile() ITK_OVERRIDE;
/** Set to reading from a camera */
virtual void SetReadFromCamera() ITK_OVERRIDE;
/** Determine the file type. Returns true if this ImageIO can read the
* file specified. */
virtual bool CanReadFile(const char *) ITK_OVERRIDE;
/** Return whether or not the VideoIO can read from a camera */
virtual bool CanReadCamera( CameraIDType cameraID )const ITK_OVERRIDE;
/** Set the spacing and dimension information for the set filename. */
virtual void ReadImageInformation() ITK_OVERRIDE;
/** Reads the data from disk into the memory buffer provided. */
virtual void Read(void *buffer) ITK_OVERRIDE;
/** Set the next frame that should be read. Return true if you operation
* successful */
virtual bool SetNextFrameToRead(FrameOffsetType frameNumber) ITK_OVERRIDE;
/** Accessor functions for video specific information */
virtual TemporalOffsetType GetPositionInMSec() const ITK_OVERRIDE
{
return this->m_PositionInMSec;
}
virtual TemporalOffsetType GetRatio() const ITK_OVERRIDE
{
return this->m_Ratio;
}
virtual FrameOffsetType GetFrameTotal() const ITK_OVERRIDE
{
return this->m_FrameTotal;
}
virtual TemporalRatioType GetFramesPerSecond() const ITK_OVERRIDE
{
return this->m_FramesPerSecond;
}
virtual FrameOffsetType GetCurrentFrame() const ITK_OVERRIDE
{
return this->m_CurrentFrame;
}
itkGetConstMacro(IFrameInterval,FrameOffsetType);
virtual FrameOffsetType GetLastIFrame() const ITK_OVERRIDE
{
return this->m_LastIFrame;
}
/** Override SetFileName to do parsing */
virtual void SetFileName(const std::string& fileList) ITK_OVERRIDE;
virtual void SetFileName(const char* fileList) ITK_OVERRIDE;
/** Override Accessors to pass through to internal image reader */
virtual double GetSpacing(unsigned int i) const ITK_OVERRIDE;
virtual double GetOrigin(unsigned int i) const ITK_OVERRIDE;
virtual std::vector< double > GetDirection(unsigned int i) const ITK_OVERRIDE;
/*-------- This part of the interfaces deals with writing data. ----- */
/** Determine the file type. Returns true if this ImageIO can write the
* file specified. */
virtual bool CanWriteFile(const char *) ITK_OVERRIDE;
/** Writes the spacing and dimensions of the image.
* Assumes SetFileName has been called with a valid file name. */
virtual void WriteImageInformation() ITK_OVERRIDE;
/** Writes the data to disk from the memory buffer provided. Make sure
* that the IORegion has been set properly. */
virtual void Write(const void *buffer) ITK_OVERRIDE;
/** Set Writer Parameters */
virtual void SetWriterParameters( TemporalRatioType framesPerSecond,
const std::vector<SizeValueType>& dim,
const char* fourCC,
unsigned int nChannels,
IOComponentType componentType ) ITK_OVERRIDE;
protected:
FileListVideoIO();
~FileListVideoIO();
virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
/** Reset member variables to empty state closed */
void ResetMembers();
/** Open the reader iff the writer is not open */
void OpenReader();
/** Open the writer iff the reader is not open */
void OpenWriter();
/** Verify that all file names in the have the same extension */
bool VerifyExtensions( const std::vector<std::string>& fileList ) const;
private:
FileListVideoIO(const Self &) ITK_DELETE_FUNCTION;
void operator=(const Self &) ITK_DELETE_FUNCTION;
/** Member Variables */
ImageIOBase::Pointer m_ImageIO;
/** List of files to read */
std::vector<std::string> m_FileNames;
};
} // end namespace itk
#endif // itkFileListVideoIO_h
|