bazar  1.3.1
growmat.h
Go to the documentation of this file.
1 #ifndef GROWMAT_H
2 #define GROWMAT_H
3 
4 #include <cv.h>
5 
6 class CvGrowMat : public CvMat {
7 public:
8 
9  CvGrowMat(int maxlines, int maxcols, int type);
10  ~CvGrowMat();
11 
12  void resize(int lines, int cols);
13 
14 private:
15  CvMat *mat;
16 };
17 
18 #endif