Main Page | Namespace List | Compound List | File List | Compound Members | File Members

Matrix.h

Go to the documentation of this file.
00001 #ifndef MATRIX_H_
00002 #define MATRIX_H_
00003 
00004 #include "Histogram_element.h"
00005 
00006 class Matrix {
00007  public:
00008   Matrix();
00010   Matrix(Histogram_element *h, int num_rowsIN, int num_colsIN, double length_limitIN);
00011   ~Matrix();
00012 
00014   int getNumCols();
00015 
00017   int getNumRows();
00018 
00020   double **getMatrix();
00021 
00022  private:
00023   int num_rows, num_cols;
00024   double length_limit;
00025   double **matrix;
00026 };
00027 
00028 #endif

Generated on Thu Sep 4 14:59:31 2003 for Content-Based Image Retrieval by doxygen 1.3.3