Searched refs:vtx (Results 1 - 11 of 11) sorted by relevance

/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp2962 cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx )
2970 if( !graph || !vtx )
2973 if( !CV_IS_SET_ELEM(vtx))
2979 CvGraphEdge *edge = vtx->first;
2982 cvGraphRemoveEdgeByPtr( graph, edge->vtx[0], edge->vtx[1] );
2985 cvSetRemoveByPtr( (CvSet*)graph, vtx );
2998 CvGraphVtx *vtx = 0; local
3007 vtx = cvGetGraphVtx( graph, index );
3008 if( !vtx )
3349 CvGraphVtx* vtx; member in struct:CvGraphItem
3526 CvGraphVtx* vtx; local
3718 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; local
3750 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; local
[all...]
H A Dcxdrawing.cpp944 CvSeq vtx;
952 v, count, &vtx, &block ));
954 CV_CALL( icvCollectPolyEdges( img, &vtx, edges, color, line_type, XY_SHIFT ));
1986 CvSeq vtx;
2002 pts[i], npts[i], &vtx, &block );
2004 CV_CALL( icvCollectPolyEdges( mat, &vtx, edges, buf, line_type, shift ));
H A Dcxpersistence.cpp4513 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; local
4514 flag_buf[k] = vtx->flags;
4515 vtx->flags = k++;
4582 ((int*)src_ptr)[0] = edge->vtx[0]->flags;
4583 ((int*)src_ptr)[1] = edge->vtx[1]->flags;
4765 CvGraphVtx* vtx; local
4766 cvGraphAddVtx( graph, 0, &vtx );
4767 vtx_buf[i] = vtx;
4769 memcpy( vtx + 1, dst_ptr, src_elem_size );
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DSkeletonControl.java345 float vtx = posBuf[idxPositions++];
357 rx += (mat.m00 * vtx + mat.m01 * vty + mat.m02 * vtz + mat.m03) * weight;
358 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight;
359 rz += (mat.m20 * vtx + mat.m21 * vty + mat.m22 * vtz + mat.m23) * weight;
460 float vtx = posBuf[idxPositions++];
479 rx += (mat.m00 * vtx + mat.m01 * vty + mat.m02 * vtz + mat.m03) * weight;
480 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight;
481 rz += (mat.m20 * vtx + mat.m21 * vty + mat.m22 * vtz + mat.m23) * weight;
/external/opencv/cvaux/src/
H A Denmin.cpp77 CvGraphVtx vtx;
408 int tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[1] );
450 int tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[1] );
454 tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[0] );
559 hlpGraphEdge -> vtx[1] );
583 hlpGraphEdge -> vtx[1] );
631 CvGraphVtx* hlpGraphVtx2 = hlpGraphEdge -> vtx[ 1 ];
639 CvGraphVtx* hlpGraphVtx3 = hlpGraphEdge -> vtx[0];
658 CvGraphVtx* hlpGraphVtx3 = hlpGraphEdge -> vtx[1];
740 hlpGraphVtx2 = hlpGraphEdge -> vtx[
[all...]
H A Dcvclique.cpp85 assert(edge->vtx[0]==vertex||edge->vtx[1] == vertex ), \
86 (edge->vtx[0] == vertex)?edge->vtx[1]:edge->vtx[0] \
H A Dcvlcm.cpp601 pLCMEdge->vtx[0] = pLCMEdge->vtx[1] = NULL;
620 LCMEdge->vtx[i] = (CvGraphVtx*)LCMNode;
625 LCMEdge_prev->next[(LCMEdge_prev->vtx[0] != (CvGraphVtx*)LCMNode)] = (CvGraphEdge*)LCMEdge;
/external/opencv/cxcore/include/
H A Dcxcore.h1161 CVAPI(int) cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx CV_DEFAULT(NULL),
1167 CVAPI(int) cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx );
1203 CVAPI(int) cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx );
1210 #define cvGraphVtxIdx( graph, vtx ) ((vtx)->flags & CV_SET_ELEM_IDX_MASK)
1232 #define CV_IS_GRAPH_VERTEX_VISITED(vtx) \
1233 (((CvGraphVtx*)(vtx))->flags & CV_GRAPH_ITEM_VISITED_FLAG)
1241 CvGraphVtx* vtx; /* current graph vertex (or current edge origin) */ member in struct:CvGraphScanner
1254 CvGraphVtx* vtx CV_DEFAULT(NULL),
H A Dcxtypes.h1276 (vtx[0] and vtx[1] respectively).
1282 next[0] points to the next edge in the vtx[0] adjacency list and
1283 next[1] points to the next edge in the vtx[1] adjacency list.
1289 struct CvGraphVtx* vtx[2];
1619 (assert((edge)->vtx[0] == (vertex) || (edge)->vtx[1] == (vertex)), \
1620 (edge)->next[(edge)->vtx[1] == (vertex)])
/external/opencv/cv/src/
H A Dcvstereogc.cpp134 static int64 icvGCMaxFlow( GCVtx* vtx, int nvtx, GCEdge* edges, GCVtx**& _orphans, int& _maxOrphans ) argument
148 GCVtx* v = vtx + i;
612 static inline int icvAddTWeights( GCVtx* vtx, int sourceWeight, int sinkWeight ) argument
614 int w = vtx->weight;
619 vtx->weight = (short)(sourceWeight - sinkWeight);
/external/opencv/cv/include/
H A Dcvcompat.h827 CvGraphVtx* vtx CV_DEFAULT(NULL),
835 temp_scanner = cvCreateGraphScanner( graph, vtx, mask );

Completed in 192 milliseconds