00001 00009 class CCIncludeGraph 00010 { 00011 protected: 00012 //methods 00013 bool LoopIsConnected(Cc &,Cc &); 00014 bool CCIsConnected(Cc &,Cc &); 00015 public: 00016 //members 00017 CCLabeling *cl; 00018 CCLabeling *ll; 00019 node_map<GLab> ignl; //type true cc, false loop 00020 edge_map<bool> igel; //true include, false neighbor 00021 graph ig; 00022 //methods 00023 CCIncludeGraph(Image*); 00024 ~CCIncludeGraph(); 00025 void IGConstruct(); 00026 }; 00027 00028 00029 00030
1.3