26#ifndef vtkNIFTIImageReader_h 
   27#define vtkNIFTIImageReader_h 
   29#include "vtkIOImageModule.h"  
   32VTK_ABI_NAMESPACE_BEGIN
 
   39VTK_ABI_NAMESPACE_BEGIN
 
   61  const char* 
GetFileExtensions()
 override { 
return ".nii .nii.gz .img .img.gz .hdr .hdr.gz"; }
 
   81  vtkGetMacro(TimeAsVector, 
bool);
 
   82  vtkSetMacro(TimeAsVector, 
bool);
 
   83  vtkBooleanMacro(TimeAsVector, 
bool);
 
  110  vtkGetMacro(PlanarRGB, 
bool);
 
  111  vtkSetMacro(PlanarRGB, 
bool);
 
  112  vtkBooleanMacro(PlanarRGB, 
bool);
 
Superclass of binary file readers.
 
a simple class to control print indentation
 
represent and manipulate 4x4 transformation matrices
 
Read NIfTI-1 and NIfTI-2 medical image files.
 
vtkMatrix4x4 * GetSFormMatrix()
Get a matrix that gives the "sform" orientation and offset for the data.
 
double GetRescaleIntercept()
 
const char * GetDescriptiveName() override
Return a descriptive name that might be useful in a GUI.
 
double GetQFac()
QFac gives the slice order in the NIFTI file versus the VTK image.
 
vtkMatrix4x4 * GetQFormMatrix()
Get a matrix that gives the "qform" orientation and offset for the data.
 
static int CheckNIFTIVersion(const nifti_1_header *hdr)
Check the version of the header.
 
double QFac
Is -1 if VTK slice order is opposite to NIFTI slice order, +1 otherwise.
 
static vtkNIFTIImageReader * New()
Static method for construction.
 
double GetRescaleSlope()
Get the slope and intercept for rescaling the scalar values.
 
void PrintSelf(ostream &os, vtkIndent indent) override
Print information about this object.
 
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Read the voxel data.
 
bool PlanarRGB
Use planar RGB instead of the default (packed).
 
static char * ReplaceExtension(const char *filename, const char *ext1, const char *ext2)
Make a new filename by replacing extension "ext1" with "ext2".
 
static bool CheckExtension(const char *filename, const char *ext)
Do a case-insensitive check for the given extension.
 
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Read the header information.
 
double RescaleIntercept
Information for rescaling data to quantitative units.
 
vtkMatrix4x4 * QFormMatrix
The orientation matrices for the NIFTI file.
 
static bool CheckAnalyzeHeader(const nifti_1_header *hdr)
Return true if an Analyze 7.5 header was found.
 
vtkNIFTIImageHeader * GetNIFTIHeader()
Get the raw header information from the NIfTI file.
 
int CanReadFile(VTK_FILEPATH const char *filename) override
Return true if this reader can read the given file.
 
~vtkNIFTIImageReader() override
 
vtkMatrix4x4 * SFormMatrix
The orientation matrices for the NIFTI file.
 
double RescaleSlope
Information for rescaling data to quantitative units.
 
bool TimeAsVector
Read the time dimension as if it was a vector dimension.
 
int GetTimeDimension()
Get the time dimension that was stored in the NIFTI header.
 
const char * GetFileExtensions() override
Valid extensions for this file type.
 
vtkNIFTIImageHeader * NIFTIHeader
A copy of the header from the file that was most recently read.