Lines Matching full:edges
2881 CvSet *edges = 0;
2897 CV_CALL( edges = cvCreateSet( CV_SEQ_KIND_GENERIC | CV_SEQ_ELTYPE_GRAPH_EDGE,
2901 graph->edges = edges;
2909 /* Remove all vertices and edges from a graph: */
2920 cvClearSet( graph->edges );
2960 /* Remove a vertex from the graph together with its incident edges: */
2976 count = graph->edges->active_count;
2984 count -= graph->edges->active_count;
2993 /* Remove a vertex from the graph together with its incident edges: */
3011 count = graph->edges->active_count;
3021 count -= graph->edges->active_count;
3137 CV_CALL( edge = (CvGraphEdge*)cvSetNew( (CvSet*)(graph->edges) ));
3146 delta = (graph->edges->elem_size - sizeof(*edge))/sizeof(int);
3261 cvSetRemoveByPtr( graph->edges, edge );
3290 /* Count number of edges incident to a given vertex: */
3316 /* Count number of edges incident to a given vertex: */
3480 CV_CALL( icvSeqElemsClearFlags( (CvSeq*)(graph->edges),
3703 edge_size = graph->edges->elem_size;
3728 // Pass 2. Copy edges:
3729 cvStartReadSeq( (CvSeq*)graph->edges, &reader );
3730 for( i = 0; i < graph->edges->total; i++ )
3746 for( i = 0, k = 0; i < graph->edges->total; i++ )