|
| | GENERIC_2D_ARRAY (int dim1, int dim2, const T &empty, T *array) |
| |
| | GENERIC_2D_ARRAY (int dim1, int dim2, const T &empty) |
| |
| | GENERIC_2D_ARRAY () |
| |
| | GENERIC_2D_ARRAY (const GENERIC_2D_ARRAY< T > &src) |
| |
| virtual | ~GENERIC_2D_ARRAY () |
| |
| void | operator= (const GENERIC_2D_ARRAY< T > &src) |
| |
| void | ResizeNoInit (int size1, int size2) |
| |
| void | Resize (int size1, int size2, const T &empty) |
| |
| void | ResizeWithCopy (int size1, int size2) |
| |
| void | Clear () |
| |
| bool | Serialize (FILE *fp) const |
| |
| bool | Serialize (tesseract::TFile *fp) const |
| |
| bool | DeSerialize (bool swap, FILE *fp) |
| |
| bool | DeSerialize (tesseract::TFile *fp) |
| |
| bool | SerializeClasses (FILE *fp) const |
| |
| bool | DeSerializeClasses (bool swap, FILE *fp) |
| |
| int | dim1 () const |
| |
| int | dim2 () const |
| |
| virtual int | num_elements () const |
| |
| virtual int | index (int column, int row) const |
| |
| void | put (ICOORD pos, const T &thing) |
| |
| void | put (int column, int row, const T &thing) |
| |
| T | get (ICOORD pos) const |
| |
| T | get (int column, int row) const |
| |
| const T & | operator() (int column, int row) const |
| |
| T & | operator() (int column, int row) |
| |
| T * | operator[] (int column) |
| |
| const T * | operator[] (int column) const |
| |
| void | operator+= (const GENERIC_2D_ARRAY< T > &addend) |
| |
| void | operator-= (const GENERIC_2D_ARRAY< T > &minuend) |
| |
| void | operator+= (const T &addend) |
| |
| void | operator*= (const T &factor) |
| |
| void | Clip (const T &rangemin, const T &rangemax) |
| |
| bool | WithinBounds (const T &rangemin, const T &rangemax) const |
| |
| double | Normalize () |
| |
| T | Max () const |
| |
| T | MaxAbs () const |
| |
| void | SumSquares (const GENERIC_2D_ARRAY< T > &src) |
| |
| void | AdaGradScaling (const GENERIC_2D_ARRAY< T > &sqsum, int num_samples) |
| |
| void | AssertFinite () const |
| |
| void | RotatingTranspose (const int *dims, int num_dims, int src_dim, int dest_dim, GENERIC_2D_ARRAY< T > *result) const |
| |
| void | delete_matrix_pointers () |
| |
template<class T>
class GENERIC_2D_ARRAY< T >
Definition at line 47 of file matrix.h.