Home | History | Annotate | Download | only in src

Lines Matching full:node1

2923     CvSparseNode *node1, *node2;
2933 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
2934 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
2936 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
2937 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
2952 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
2953 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
2955 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
2956 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
2957 0, 0, &node1->hashval );
2981 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
2982 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
2984 float v1 = *(float*)CV_NODE_VAL(mat1,node1);
2985 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
2986 0, 0, &node1->hashval );
3001 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
3002 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
3004 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
3005 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
3006 0, 0, &node1->hashval );
3015 for( node1 = cvInitSparseMatIterator( mat2, &iterator );
3016 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
3018 double v2 = *(float*)CV_NODE_VAL(mat2,node1);