You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkXMLImageDataReader.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/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 notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkXMLImageDataReader
|
|
* @brief Read VTK XML ImageData files.
|
|
*
|
|
* vtkXMLImageDataReader reads the VTK XML ImageData file format. One
|
|
* image data file can be read to produce one output. Streaming is
|
|
* supported. The standard extension for this reader's file format is
|
|
* "vti". This reader is also used to read a single piece of the
|
|
* parallel file format.
|
|
*
|
|
* @sa
|
|
* vtkXMLPImageDataReader
|
|
*/
|
|
|
|
#ifndef vtkXMLImageDataReader_h
|
|
#define vtkXMLImageDataReader_h
|
|
|
|
#include "vtkIOXMLModule.h" // For export macro
|
|
#include "vtkXMLStructuredDataReader.h"
|
|
|
|
class vtkImageData;
|
|
|
|
class VTKIOXML_EXPORT vtkXMLImageDataReader : public vtkXMLStructuredDataReader
|
|
{
|
|
public:
|
|
vtkTypeMacro(vtkXMLImageDataReader,vtkXMLStructuredDataReader);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
static vtkXMLImageDataReader *New();
|
|
|
|
//@{
|
|
/**
|
|
* Get the reader's output.
|
|
*/
|
|
vtkImageData *GetOutput();
|
|
vtkImageData *GetOutput(int idx);
|
|
//@}
|
|
|
|
/**
|
|
* For the specified port, copy the information this reader sets up in
|
|
* SetupOutputInformation to outInfo
|
|
*/
|
|
virtual void CopyOutputInformation(vtkInformation *outInfo, int port);
|
|
|
|
protected:
|
|
vtkXMLImageDataReader();
|
|
~vtkXMLImageDataReader();
|
|
|
|
double Origin[3];
|
|
double Spacing[3];
|
|
int PieceExtent[6];
|
|
|
|
const char* GetDataSetName();
|
|
void SetOutputExtent(int* extent);
|
|
|
|
int ReadPrimaryElement(vtkXMLDataElement* ePrimary);
|
|
|
|
// Setup the output's information.
|
|
void SetupOutputInformation(vtkInformation *outInfo);
|
|
|
|
virtual int FillOutputPortInformation(int, vtkInformation*);
|
|
|
|
|
|
|
|
private:
|
|
vtkXMLImageDataReader(const vtkXMLImageDataReader&) VTK_DELETE_FUNCTION;
|
|
void operator=(const vtkXMLImageDataReader&) VTK_DELETE_FUNCTION;
|
|
};
|
|
|
|
#endif
|