#include <itkRawImageWriter.h>
Inheritance diagram for itk::RawImageWriter:
Public Types | |
typedef RawImageWriter | Self |
typedef ImageWriter< TInputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
enum | ByteOrder { BigEndian, LittleEndian } |
Public Methods | |
virtual const char * | GetClassName () const |
virtual void | SetByteOrder (ByteOrder _arg) |
virtual ByteOrder | GetByteOrder () |
void | SetByteOrderToBigEndian () |
void | SetByteOrderToLittleEndian () |
Static Public Methods | |
Pointer | New () |
Protected Methods | |
RawImageWriter () | |
~RawImageWriter () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | WriteData () |
RawImageWriter writes n-dimensional images in raw file format. The raw format is just a sequence of numbers representing pixel (i.e., image) values in the order of image definition (i.e., row, then slice, then volume, etc.) You can specify binary or ASCII output types, as well as the byte order (little endian or big endian).
Definition at line 42 of file itkRawImageWriter.h.
|
Reimplemented from itk::ImageWriter< TInputImage >. Definition at line 49 of file itkRawImageWriter.h. |
|
Reimplemented from itk::ImageWriter< TInputImage >. Definition at line 48 of file itkRawImageWriter.h. |
|
Standard class typedefs. Reimplemented from itk::ImageWriter< TInputImage >. Definition at line 46 of file itkRawImageWriter.h. |
|
Reimplemented from itk::ImageWriter< TInputImage >. Definition at line 47 of file itkRawImageWriter.h. |
|
Enums used to specify the byte order. Definition at line 58 of file itkRawImageWriter.h. |
|
|
|
Definition at line 76 of file itkRawImageWriter.h. |
|
Get the byte order. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageWriter< TInputImage >. |
|
Method for creation through the object factory. Reimplemented from itk::Object. |
|
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from itk::ImageWriter< TInputImage >. |
|
Set the ITK file type. The default is BigEndian. |
|
Specify the byte order as big endian. Definition at line 67 of file itkRawImageWriter.h. |
|
Specify the byte order as little endian. Definition at line 71 of file itkRawImageWriter.h. |
|
All writers must respond to WriteData(). The WriteData() method is responsible for updating the pipeline, and may request pieces of the data (e.g., stream) if necessary to write out the entire input dataset. Implements itk::Writer. |