Home
last modified time | relevance | path

Searched refs:vtxIdx (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cvaux/src/
Ddecomppoly.cpp330 int vtxIdx,
344 if( edges[ mainEdgeIdx * 2 ] == vtxIdx ) {
345 x0 = contour[ vtxIdx ].x;
346 y0 = contour[ vtxIdx ].y;
357 x0 = contour[ vtxIdx ].x;
358 y0 = contour[ vtxIdx ].y;
368 ( edges[ i * 2 ] == vtxIdx || edges[ i * 2 + 1 ] == vtxIdx ) )
373 if( edges[ i * 2 ] == vtxIdx ) {
385 if( edges[ i * 2 ] == vtxIdx ) {
Denmin.cpp558 int vtxIdx = cvGraphVtxIdx( hlpGraph,
560 ofs = vtxIdx == v;
582 int vtxIdx = cvGraphVtxIdx( hlpGraph,
584 ofs = vtxIdx == v;
/external/opencv3/modules/imgproc/src/
Dgrabcut.cpp459 int vtxIdx = graph.addVtx(); in constructGCGraph() local
479 graph.addTermWeights( vtxIdx, fromSource, toSink ); in constructGCGraph()
485 graph.addEdges( vtxIdx, vtxIdx-1, w, w ); in constructGCGraph()
490 graph.addEdges( vtxIdx, vtxIdx-img.cols-1, w, w ); in constructGCGraph()
495 graph.addEdges( vtxIdx, vtxIdx-img.cols, w, w ); in constructGCGraph()
500 graph.addEdges( vtxIdx, vtxIdx-img.cols+1, w, w ); in constructGCGraph()