Home | History | Annotate | Download | only in src

Lines Matching defs:node1

516         CvSparseNode *node1, *node2;
527 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
528 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
530 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
559 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
560 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
562 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
563 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
564 0, 0, &node1->hashval );
589 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
590 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
592 float v1 = *(float*)CV_NODE_VAL(mat1,node1);
593 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
594 0, 0, &node1->hashval );
610 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
611 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
613 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
614 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1),
615 0, 0, &node1->hashval );
624 for( node1 = cvInitSparseMatIterator( mat2, &iterator );
625 node1 != 0; node1 = cvGetNextSparseNode( &iterator ))
627 double v2 = *(float*)CV_NODE_VAL(mat2,node1);