00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkArray2D_h
00018 #define __itkArray2D_h
00019
00020 #include "itkMacro.h"
00021 #include "vnl/vnl_matrix.h"
00022
00023 namespace itk
00024 {
00025
00026
00043 template <typename TValueType >
00044 class Array2D : public vnl_matrix< TValueType >
00045 {
00046 public:
00047
00049 typedef TValueType ValueType;
00050 typedef Array2D Self;
00051 typedef vnl_matrix<TValueType> VnlMatrixType;
00052
00053 public:
00054
00055 Array2D();
00056 Array2D(unsigned int rows,unsigned int cols);
00057 Array2D( const Self & array );
00058 Array2D( const VnlMatrixType & matrix );
00059
00060 const Self & operator=( const Self & array );
00061 const Self & operator=( const VnlMatrixType & matrix );
00062
00063 void Fill (TValueType const& v) { fill(v); }
00064
00067 ~Array2D() {};
00068
00069 };
00070
00071
00072
00073 template <typename TValueType >
00074 std::ostream & operator<<(std::ostream &os, const Array2D<TValueType> &arr)
00075 {
00076 const unsigned int numberOfColumns = arr.cols();
00077 const unsigned int numberOfRows = arr.rows();
00078 const signed int lastColumn = (signed int) numberOfColumns - 1;
00079
00080 for (unsigned int r=0; r < numberOfRows; ++r)
00081 {
00082 os << "[";
00083 for ( signed int c=0; c < lastColumn; ++c)
00084 {
00085 os << arr(r,c) << ", ";
00086 }
00087 if (numberOfColumns >= 1)
00088 {
00089 os << arr(r,lastColumn);
00090 }
00091 os << "]" << std::endl;
00092 }
00093
00094 return os;
00095 }
00096
00097 }
00098
00099
00100 #ifndef ITK_MANUAL_INSTANTIATION
00101 #include "itkArray2D.txx"
00102 #endif
00103
00104
00105 #endif