/usr/include/ITK-4.9/itkVoxBoCUBImageIO.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 | /*=========================================================================
*
* 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 itkVoxBoCUBImageIO_h
#define itkVoxBoCUBImageIO_h
#include <fstream>
#include <string>
#include <map>
#include "itkImageIOBase.h"
#include "itkSpatialOrientation.h"
#include <cstdio>
namespace itk
{
// Forward declaration
class GenericCUBFileAdaptor;
/** \class VoxBoCUBImageIO
*
* \brief Read VoxBoCUBImage file format.
*
* A generic reader and writer object for VoxBo files. Basically it
* provides uniform access to gzip and normal files
*
* \author Burstein, Pablo D.; Yushkevich, Paul; Gee, James C.
*
* This implementation was contributed as a paper to the Insight Journal
* http://hdl.handle.net/1926/303
*
* \ingroup IOFilters
*
* \ingroup ITKReview
*/
class VoxBoCUBImageIO:public ImageIOBase
{
public:
/** Standard class typedefs. */
typedef VoxBoCUBImageIO Self;
typedef ImageIOBase Superclass;
typedef SmartPointer< Self > Pointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(VoxBoCUBImageIO, Superclass);
/*-------- This part of the interfaces deals with reading data. ----- */
/** Determine the file type. Returns true if this ImageIO can read the
* file specified. */
virtual bool CanReadFile(const char *) 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;
/*-------- 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;
/** Set the spacing and dimension information for the set filename. */
virtual void WriteImageInformation() ITK_OVERRIDE;
/** Writes the data to disk from the memory buffer provided. Make sure
* that the IORegions has been set properly. */
virtual void Write(const void *buffer) ITK_OVERRIDE;
VoxBoCUBImageIO();
~VoxBoCUBImageIO();
virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
private:
VoxBoCUBImageIO(const Self &) ITK_DELETE_FUNCTION;
void operator=(const Self &) ITK_DELETE_FUNCTION;
bool CheckExtension(const char *, bool & isCompressed);
GenericCUBFileAdaptor * CreateReader(const char *filename);
GenericCUBFileAdaptor * CreateWriter(const char *filename);
GenericCUBFileAdaptor *m_Reader, *m_Writer;
// Initialize the orientation map (from strings to ITK)
void InitializeOrientationMap();
// Orientation stuff
typedef SpatialOrientation::ValidCoordinateOrientationFlags OrientationFlags;
typedef std::map< std::string, OrientationFlags > OrientationMap;
typedef std::map< OrientationFlags, std::string > InverseOrientationMap;
OrientationMap m_OrientationMap;
InverseOrientationMap m_InverseOrientationMap;
// Method to swap bytes in read buffer
void SwapBytesIfNecessary(void *buffer, BufferSizeType numberOfBytes);
// Strings used in VoxBo files
static const char *m_VB_IDENTIFIER_SYSTEM;
static const char *m_VB_IDENTIFIER_FILETYPE;
static const char *m_VB_DIMENSIONS;
static const char *m_VB_SPACING;
static const char *m_VB_ORIGIN;
static const char *m_VB_DATATYPE;
static const char *m_VB_BYTEORDER;
static const char *m_VB_ORIENTATION;
static const char *m_VB_BYTEORDER_MSB;
static const char *m_VB_BYTEORDER_LSB;
static const char *m_VB_DATATYPE_BYTE;
static const char *m_VB_DATATYPE_INT;
static const char *m_VB_DATATYPE_FLOAT;
static const char *m_VB_DATATYPE_DOUBLE;
};
} // end namespace itk
#endif // itkVoxBoCUBImageIO_h
|