Lines Matching refs:LCM
107 int _cvConstructLCM(CvLCM* LCM);
279 CvLCM LCM = {NULL, VoronoiDiagram,NULL,NULL,maxWidth}; in cvLinearContorModelFromVoronoiDiagram() local
301 LCM.EdgeStorage = cvCreateChildMemStorage(LCMstorage); in cvLinearContorModelFromVoronoiDiagram()
302 LCM.ContourStorage = cvCreateChildMemStorage(LCMstorage); in cvLinearContorModelFromVoronoiDiagram()
303 LCM.Graph = cvCreateGraph(CV_SEQ_KIND_GRAPH|CV_GRAPH_FLAG_ORIENTED, in cvLinearContorModelFromVoronoiDiagram()
308 if(!_cvConstructLCM(&LCM)) in cvLinearContorModelFromVoronoiDiagram()
309 cvReleaseLinearContorModelStorage(&LCM.Graph); in cvLinearContorModelFromVoronoiDiagram()
313 return LCM.Graph; in cvLinearContorModelFromVoronoiDiagram()
351 int _cvConstructLCM(CvLCM* LCM) in _cvConstructLCM() argument
364 for(CvSet* SiteSet = LCM->VoronoiDiagram->sites; in _cvConstructLCM()
376 if(pNode->radius > LCM->maxWidth) in _cvConstructLCM()
381 if(pNode1->radius > LCM->maxWidth) in _cvConstructLCM()
390 if(!_cvTreatExeptionalCase(LCM,&LCMdata)) in _cvConstructLCM()
396 if(!_cvConstructLCMComplexNode(LCM,NULL,&LCMdata)) in _cvConstructLCM()
402 if(!_cvConstructLCMSimpleNode(LCM,NULL,&LCMdata)) in _cvConstructLCM()