ITK  4.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns > Class Template Reference

Writes out numeric itk data objects to a csv file. More...

#include <itkCSVNumericObjectFileWriter.h>

Inheritance diagram for itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >:
Collaboration diagram for itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >:

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef itk::Matrix
< TValueType, NRows, NColumns > 
itkMatrixType
typedef SmartPointer< SelfPointer
typedef CSVNumericObjectFileWriter Self
typedef itk::Size
< 2 >::SizeValueType 
SizeValueType
typedef std::vector< std::string > StringVectorType
typedef LightProcessObject Superclass
typedef vnl_matrix_fixed
< TValueType, NRows, NColumns > 
vnlFixedMatrixType
typedef vnl_matrix< TValueType > vnlMatrixType

Public Member Functions

void ColumnHeadersPushBack (const std::string &)
virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
void PrepareForWriting ()
void RowHeadersPushBack (const std::string &)
void SetColumnHeaders (const StringVectorType &columnheaders)
virtual void SetFieldDelimiterCharacter (char _arg)
virtual void SetFileName (const char *_arg)
void SetInput (const itkMatrixType *obj)
void SetInput (const vnlMatrixType *obj)
void SetInput (const vnlFixedMatrixType *obj)
void SetRowHeaders (const StringVectorType &rowheaders)
virtual void Update ()
virtual void Write ()

Static Public Member Functions

static Pointer New ()

Protected Member Functions

 CSVNumericObjectFileWriter ()
void PrintSelf (std::ostream &os, Indent indent) const
virtual ~CSVNumericObjectFileWriter ()

Private Member Functions

 CSVNumericObjectFileWriter (const Self &)
void operator= (const Self &)

Private Attributes

StringVectorType m_ColumnHeaders
SizeValueType m_Columns
char m_FieldDelimiterCharacter
std::string m_FileName
TValueType * m_InputObject
StringVectorType m_RowHeaders
SizeValueType m_Rows

Detailed Description

template<class TValueType, unsigned int NRows = 0, unsigned int NColumns = 0>
class itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >

Writes out numeric itk data objects to a csv file.

CSVNumericObjectFileWriter writes numeric data from an itk object into a csv file. It is templated over the type of data being written, the number of rows and the number of columns. The writer uses the datablock member from vnl_matrix or vnl_matrix_fixed. As of now the objects itkMatrix, itkArray2D, and any vnl_matrix based objects are supported.

The user specifies the file name and the field delimiter character using the Set macro method for each. The user can also write out row and column headers. The methods ColumnHeadersPushBack() and RowHeadersPushBack() can be used to push strings into the vectors for row and column headers. The row and column headers can also be set using the Set macro methods for each if vectors for the headers are already set. The SetInput() method is overloaded to allow various itk objects to be set as input.

The method Write() is used to output the object data to a csv file.

The writer will output a warning if the number of row headers is not consistent with the number of rows in the input object or if the number of column headers is not consistent with the number of columns in the input object. It is up to the user to check this.

Definition at line 61 of file itkCSVNumericObjectFileWriter.h.


Member Typedef Documentation

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef SmartPointer<const Self> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::ConstPointer

Reimplemented from itk::LightProcessObject.

Definition at line 68 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef itk::Matrix<TValueType,NRows,NColumns> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::itkMatrixType

Definition at line 79 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef SmartPointer<Self> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::Pointer

Reimplemented from itk::LightProcessObject.

Definition at line 67 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef CSVNumericObjectFileWriter itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::Self

Standard class typedefs

Reimplemented from itk::LightProcessObject.

Definition at line 65 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef itk::Size<2>::SizeValueType itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SizeValueType

Definition at line 83 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef std::vector<std::string> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::StringVectorType

Definition at line 81 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef LightProcessObject itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::Superclass

Reimplemented from itk::LightProcessObject.

Definition at line 66 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef vnl_matrix_fixed<TValueType, NRows, NColumns> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::vnlFixedMatrixType

Definition at line 78 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
typedef vnl_matrix<TValueType> itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::vnlMatrixType

Definition at line 74 of file itkCSVNumericObjectFileWriter.h.


Constructor & Destructor Documentation

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::CSVNumericObjectFileWriter ( ) [protected]
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::~CSVNumericObjectFileWriter ( ) [inline, protected, virtual]

Definition at line 116 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::CSVNumericObjectFileWriter ( const Self ) [private]

Member Function Documentation

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::ColumnHeadersPushBack ( const std::string &  )
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual::itk::LightObject::Pointer itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::CreateAnother ( void  ) const [virtual]

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::LightProcessObject.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual const char* itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods).

Reimplemented from itk::LightProcessObject.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
static Pointer itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::LightProcessObject.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::operator= ( const Self ) [private]

This method causes the filter to generate its output.

Reimplemented from itk::LightProcessObject.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::PrepareForWriting ( )
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

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::LightProcessObject.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::RowHeadersPushBack ( const std::string &  )
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetColumnHeaders ( const StringVectorType columnheaders)
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetFieldDelimiterCharacter ( char  _arg) [virtual]
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetFileName ( const char *  _arg) [virtual]
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetInput ( const vnlFixedMatrixType obj)

Set the input object if the matrix is of vnl_matrix_fixed type.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetInput ( const itkMatrixType obj)

Set the input object if the matrix is of itkMatrixType.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetInput ( const vnlMatrixType obj)

Set the input object if the matrix is of vnl_matrix type or Array2D.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::SetRowHeaders ( const StringVectorType rowheaders)
template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::Update ( ) [virtual]

Aliased to the Write() method to be consistent with the rest of the pipeline.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
virtual void itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::Write ( ) [virtual]

Write out the object


Member Data Documentation

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
StringVectorType itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_ColumnHeaders [private]

Definition at line 125 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
SizeValueType itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_Columns [private]

Definition at line 124 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
char itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_FieldDelimiterCharacter [private]

Definition at line 122 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
std::string itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_FileName [private]

Definition at line 120 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
TValueType* itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_InputObject [private]

Definition at line 121 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
StringVectorType itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_RowHeaders [private]

Definition at line 126 of file itkCSVNumericObjectFileWriter.h.

template<class TValueType , unsigned int NRows = 0, unsigned int NColumns = 0>
SizeValueType itk::CSVNumericObjectFileWriter< TValueType, NRows, NColumns >::m_Rows [private]

Definition at line 123 of file itkCSVNumericObjectFileWriter.h.


The documentation for this class was generated from the following file: