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

Contour_info.h

Go to the documentation of this file.
00001 #ifndef CONTOUR_INFO_H_
00002 #define CONTOUR_INFO_H_
00003 
00004 #include "Points.h"
00005 
00006 class Contour_info {
00007 
00008  public:
00009   Contour_info();
00010   ~Contour_info();
00011 
00013   void makeHole();
00014 
00016   Point getFirstPoint();
00017 
00019   Point getNextPoint();
00020   
00022   void addPoint(Point *point);
00023 
00027   bool isHole();
00028 
00029  private:
00030   bool holeFlag;
00031   Points *p;
00032   
00033 };
00034 
00035 #endif

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